-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (139 loc) · 6.13 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Strona pierwsza</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Pacifico" rel="stylesheet">
<link rel="stylesheet" href="css/aos.css">
</head>
<body>
<header class="page-header">
<div class="container">
<a href="" class="brand">
<h3 class="main-h3">Baker Int!</h3>
</a>
<nav>
<label for="toggle">➧</label>
<input type="checkbox" id="toggle">
<ul class="menu-items">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#projects">Technologies</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="baner" id="home">
<header class="section-header">
<div class="content">
<h2>Dzień Dobry</h2>
<p>Testowa strona Piekarni</p>
<div class="btn">
<a class="main-btn" href="">APLIKUJ</a>
</div>
</div>
</header>
</section>
<section class="about-section" id="about">
<div class="container">
<article>
<h2>A FEW WORDS</h2>
<p> I have been working 10 years as a self-employment mainly working remotely in different time zones. My experience
and practice focused on the theory of mental games (with success) as well as the analysis of decisions
made by people, which at the same time required me to know and properly use psychology, mathematics,
game theory as well as development of many secondary skills ie working with people from several time
zones / analysis, processing and use of data using advanced statistical software that gathers statistics
and correlations between them. From the 2nd quarter of 2017. I decided to take on a new challenge that
was always somewhere on the side, ie the IT industry with the start as Front-End Developer up to Full
Stack.</p>
</article>
<aside>
<div class="widget">
<h3>SLIDE STORY</h3>
<div class="slideImg">
<img class="slideInRight" src="img/AV2.jpg" alt="Myself">
</div>
</div>
</aside>
</div>
</section>
<section class="projects-section" id="projects">
<div class="container">
<div class="right-col">
<h2 class="header-left" data-aos="fade-right" data-aos-offset="250" data-aos-duration="300">SKILL</h2>
<div class="skill-box" data-aos="fade-down-right">
<img src="img/icons/htmlIcon.png" alt="htmlIcon">
</div>
<div class="skill-box" data-aos="fade-down-right">
<img src="img/icons/jsIcon.png" alt="jsIcon">
</div>
<div class="skill-box" data-aos="fade-down-right">
<img src="img/icons/sassIcon.png" alt="sassIcon">
</div>
<div class="skill-box" data-aos="fade-down-right">
<img src="img/icons/git1Icon.png" alt="gitIcon">
</div>
</div>
<div class="left-col">
<h2 class="header-right" data-aos="fade-left" data-aos-offset="250" data-aos-duration="300">SETS</h2>
<div class="skill-box" data-aos="fade-down-left">
<img src="img/icons/css.png" alt="cssIcon">
</div>
<div class="skill-box" data-aos="fade-down-left">
<img src="img/icons/jqIcon.png" alt="jqIcon">
</div>
<div class="skill-box" data-aos="fade-down-left">
<img src="img/icons/bootstrapIcon.png" alt="bootIcon">
</div>
<div class="skill-box" data-aos="fade-down-left">
<img src="img/icons/vueIcon.png" alt="vueIcon">
</div>
</div>
</div>
</section>
<section class="contact-section" id="contact">
<div class="container-title">
<h2 class="section-titlle">Kontakt</h2>
<div class="form-box" data-aos="zoom-in" data-aos="fade-up" data-aos-offset="200" data-aos-duration="400">
<form>
<input type="text" placeholder="Name">
<input type="text" placeholder="Surname">
<input type="email" placeholder="Email">
<textarea id="subject" name="subject" placeholder="Write something.."></textarea>
<input type="submit" name="Submit">
</form>
</div>
</div>
</section>
<footer class="page-footer">
<div class="container">
<p>Copyright © 2017 - Baker Studio</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="
crossorigin="anonymous"></script>
<script src="js/imgshrink.js"></script>
<script type="text/javascript" src="js/aos.js"></script>
<script type="text/javascript">
AOS.init({
offset: 300,
duration: 300,
easing: 'ease-in-sine',
delay: 40,
});
</script>
</body>
</html>