-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (100 loc) · 4.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="./js/main.js" async ></script>
<title>developer</title>
</head>
<body>
<header>
<div class="divider "></div>
<h4 class="center-align capitalize">
Szymon Rykała <br>
<small class="teal-text">web developer</small></h4>
<div class="divider "></div>
</header>
<nav class="white z-depth-0">
<div class="nav-wrapper">
<ul id="nav-mobile" class="right capitalize">
<li><a href="#portfolio" class='grey-text '>Portfolio</a></li>
<li><a href="#about" class='grey-text'>About</a></li>
<li><a href="#contact" class='grey-text'>Contact</a></li>
</ul>
</div>
</nav>
<div class="parallax-container">
<div class="parallax">
<img src="./img/human.jpg">
</div>
</div>
<main class="center-align">
<section id="portfolio" class="section valign-wrapper">
<div class="row container">
<br>
<h5 class='capitalize '>Portfolio </h5>
<div class="divider "></div>
<div><br> </div>
<!-- loaded by JS -->
<span id="portfolioContainer"></span>
</div>
</section>
<section id="about" class="section valign-wrapper teal lighten-3">
<div class="row container ">
<br>
<h5 class='capitalize'>About me </h5>
<div class="divider white"></div>
<br>
<img src="https://media-exp1.licdn.com/dms/image/C5603AQHpHnTPL0gG_w/profile-displayphoto-shrink_200_200/0?e=1601510400&v=beta&t=hE1u5yvjYHo7xdyV3dDH8cM6haTecphd8efRFTCKuXM"
alt="Szymon Rykala" class="responsive circle col offset-s3 s6 m4 offset-m4 l2 offset-l5">
<p class="flow-text col s12 ">
Hello, my name is Szymon and I create websites and web apps. I am a daily student on University of
science and Technology in Bydgoszcz on Electronic and Telecommunication. My hobby is photography,
plants(especially ginseg ficuses). In free times I usually play on trombone, listen to good music or
edit photos which I made earlier. <br>
<small class="left">P.S. I will make You a website!</small>
</p>
</div>
</section>
<section id="contact" class="section valign-wrapper">
<div class="row container">
<br>
<h5 class='capitalize'>Contact </h5>
<div class="divider"></div>
<blockquote>
I am all to Your disposition. Please, let me know if you need me. Promise to help You 😊.
</blockquote>
<br><br><br><br>
<div class="row">
<a href="tel:+48 731266432" class="col s12 m4 offset-m2 "><i
class="material-icons large">phone</i></a>
<p class="flow-text col s12 m4 ">Simply call me!</p>
</div>
<div class="row">
<a href="mailto:[email protected]" class="col s12 m4 offset-m2 "> <i
class="material-icons large">mail_outline</i> </a>
<p class="flow-text col s12 m4 ">Write me an email!</p>
</div>
</div>
</section>
</main>
<footer class='page-footer teal lighten-2'>
<div class="container">
<h5 class="white-text">Useful links</h5>
<p>LinkedIn <a href="https://www.linkedin.com/in/szymon-ryka%C5%82a/" target="blank">Add me to Your contact
network</a></p>
<p>GitHub: <a href="https://github.com/szymonrykala" target="blank">My public repositories</a></p>
</div>
<div class="footer-copyright">
<div class="container center-align">Szymon Rykała © all rights reserved.</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script type="text/javascript">
M.AutoInit();
</script>
</body>
</html>