-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (83 loc) · 2.57 KB
/
index.html
File metadata and controls
84 lines (83 loc) · 2.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<script src="https://kit.fontawesome.com/053e59d05c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="queries.css">
</head>
<body>
<nav id="navbar">
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<section id="about">
<div>
<div id="word-wall"></div>
</div>
<div></div>
<div>
<div>
<div class="square square1"></div>
<div class="square square2"></div>
<div id="bio-wrap">
<h1>Hi, I'm Dawid</h1>
<h2>a frontend developer</h2>
<p>My interest is creating aesthetic and smooth visual experience for people. On this website you can check out some of my projects.</p>
</div>
<div id="squares">
<div class="square square3"></div>
<div class="square square4"></div>
</div>
</div>
<div>
</div>
</div>
</section>
<section class="projects">
<div id="projects-section-title" class="section-title">
<h1 class="section-header">My projects</h1>
</div>
<div id="projects">
<div id="projects-display"></div>
<div id="projects-menu">
<button id="projects-menu-left" class="projects-menu-button"></button>
<p id="projects-title"></p>
<button id="projects-menu-right" class="projects-menu-button"></button>
</div>
</div>
</section>
<section id="contact">
<div id="contact-section-title" class="section-title">
<h1 class="section-header">Contact me</h1>
</div>
<div id="contact-menu">
<a href="https://www.linkedin.com/in/dawid-czesak-390171172/?locale=en_US" target="_blank">
<i class="fab fa-linkedin"></i>
<p>Linkedin</p>
</a>
<a href="mailto:dawidczesak98@gmail.com" target="_blank">
<i class="fas fa-envelope"></i>
<p>Email</p>
</a>
<a href="https://github.com/David0z" target="_blank">
<i class="fab fa-github"></i>
<p>Github</p>
</a>
</div>
</section>
<script src="script.js"></script>
</body>
</html>