-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
67 lines (67 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header class="nav center">
<p class="logo">LOGO</p>
<input type="checkbox" name="" class="checkBtn"/>
<ol class="center">
<a href="#"><li>About</li></a>
<a href="#"><li>Education</li></a>
<a href="#"><li>Experience</li></a>
<a href="#"><li>Projects</li></a>
<a href="#"><li>Contact</li></a>
</ol>
</header>
<section class="main">
<div class="box">
<h1>Damien Braun</h1>
<p>Front-End Developer & UI/UX</p>
<button class="btn">About</button>
</div>
<img src="profile.jpg" alt="">
</section>
<!-- about -->
<div class="about center">
<div class="box_wrap">
<p class="heading">About</p>
<p class="text">Hello! My name is Damien Braun, and I'm a web developer. I have a diverse set of skills,ranging from design, to HTML + CSS + javascript.</p>
</div>
<div class="box_wrap">
<p class="heading">Skills</p>
<div class="skills_box">
<i class="fab fa-html5 fa-3x"></i>
<i class="fab fa-css3-alt fa-3x"></i>
<i class="fab fa-js fa-3x"></i>
<i class="fab fa-node-js fa-3x"></i>
<i class="fab fa-react fa-3x"></i>
</div>
</div>
</div>
<!-- education -->
<div class="education center">
<div class="left_box">
<h1 class="heading">Education</h1>
<div class="container">
<h3>University Of Google</h3>
<p>Computer science</p>
<small>July 2014-2017</small>
</div>
<div class="container">
<h3>University Of Youtube</h3>
<p>Web Development</p>
<small>Sep 2011-1016</small>
</div>
</div>
<div class="right_box">
<img src="university.jpg" alt="">
</div>
</div>
</body>
</html>