-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (45 loc) · 1.56 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
<!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>Protfolio</title>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<!-- Navbar section start -->
<nav>
<a href="#" class="nav__logo">WEBFLIX</a>
<div class="nav__items">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Projects</a>
<a href="#" class="nav__item__highlighted">Contact</a>
</div>
</nav>
<!-- navbar end -->
<!-- hero/main section start -->
<div class="hero">
<img src="./images/person.png" class="hero__image" alt="" />
<div class="hero__text">
<div class="header_text">
Hello,<br />
I'm Ellen
</div>
<div class="faded_text">UI/UX designer</div>
<button class="hero__button">About me</button>
</div>
</div>
<!-- Hero section end -->
<!-- Absolute positionsed box so that it can float around anywhere -->
<div class="user__socials">
<img src="./images/discord.png" class="ico_discord" alt="" />
<img src="./images/instagram.png" class="ico_instagram" alt="" />
<img src="./images/twitter.png" class="ico_twitter" alt="" />
<img src="./images/mail.png" class="ico_mail" alt="" />
<img src="./images/reddit.png" class="ico_reddit" alt="" />
<img src="./images/github.png" class="ico_github" alt="" />
</div>
</body>
</html>