This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
forked from dudeek/CodersCamp2020.BusinessCard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (136 loc) · 5.5 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CodersCamp | Projekt 1 - HTML i CSS</title>
<meta name="description"
content="CodersCamp to darmowy, otwarty kurs programowania webowego we Wrocławiu. Sprawdź, czego nauczysz się na CodersCamp i spróbuj swoich sił w branży IT!">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Langar&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<input id="nav-toggle" type="checkbox">
<div class="logo">PORT<b>FOLIO</b></div>
<ul class="links">
<li><a href="#about">About</a></li>
<li><a href="#skills-section">Technology</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<label for="nav-toggle" class="icon-burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</label>
</nav>
<div class="container">
<img class="animated-photo" src="img/me.png" alt="Animated photo">
<div class="description-container">
<h1>Hi i'm Tomek</h1>
<h4>I am a participant of the Coders Camp programming course</h4>
</div>
</div>
<section id="about" class="about">
<h1>About me</h1>
<div class="full-info-container">
<div class="basic-info">
<h3>Full name:</h3>
<p>Tomasz Dudek</p>
<h3>Age:</h3>
<p>24</p>
<h3>Profile:</h3>
<p>Front-end developer</p>
<h3>Email:</h3>
<p>[email protected]</p>
</div>
<div class="description-about-me">
<p>I am a second year student at the University of Applied Computer Science. I am currently studying
computer science.
In 2019 I graduated from the Wrocław University of Technology. In my free time I try to educate in
the field of front-end.
I started my adventure with programming in July 2020.
I am interested in new technologies and esport. I want find job in IT in the future.</p>
</div>
</div>
</section>
<section id="skills-section" class="skills-section">
<h1>Technology</h1>
<div class="icons">
<div class="html">
<i class="fab fa-html5"></i>
<p>HTML 5</p>
</div>
<div class="css">
<i class="fab fa-css3-alt"></i>
<p>CSS 3</p>
</div>
<div class="java-script">
<i class="fab fa-js"></i>
<p>Java Script</p>
</div>
<div class="react">
<i class="fab fa-react"></i>
<p>React</p>
</div>
<div class="node">
<i class="fab fa-node"></i>
<p>Node JS</p>
</div>
</div>
</section>
<section class="portfolio-section" id="portfolio">
<h1>Projects</h1>
<div class="projects">
<div class="project1">
<h2>Serwis do zamawiania jedzenia</h2>
<div class="project-photo">
<a href="https://github.com/dudeek" target="_blank">
<img id="xxx" src="img/project1.jpg" alt="Photo of project 1"></a>
</div>
</div>
<div class="project2">
<h2>Quiz Star Wars</h2>
<div class="project-photo">
<a href="https://github.com/dudeek" target="_blank">
<img id="xxx" src="img/project2.jpg" alt="Photo of project 2"></a>
</div>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<h1>Contact</h1>
<div class="container-contact-section">
<form action="" method="POST" id="my-form">
<div class="form-group">
<label for="firstName"> First Name</label>
<input type="text" class="firstName" name="firstName">
</div>
<div class="form-group">
<label for="latsName">Last Name</label>
<input type="text" class="lastName" name="lastName">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="email" name="email">
</div>
<div class="form-group">
<label for="massage">Massage</label>
<textarea name="massage" class="massage" cols="35" rows="12"></textarea>
</div>
<button type="reset">Submit</button>
</form>
</div>
<div id="status"></div>
</section>
<footer>
<p> © Designed & Built by Tomasz Dudek ~</p>
</footer>
</body>
</html>