-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (68 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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">
<!-- CSS Stylesheets -->
<link href="styles/index.css" rel="stylesheet" type="text/css" />
<!-- Unicons Stylesheet -->
<link href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" rel="stylesheet" />
<title>Sau's Portfolio</title>
</head>
<body>
<header>
<!-- Header -->
<nav>
<!-- Navigation-->
<div class="menu-links">
<!--Menu links -->
<div class="nav-link">
<!-- Link-->
<a href="index.html">Home</a>
</div>
<div class="nav-link">
<!-- Link-->
<a href="about.html">About</a>
</div>
<div class="nav-link">
<!-- Link -->
<a href="#">Portfolio</a>
</div>
</div>
<div class="logo"> <!-- Logo -->
Portfolio
</div>
<div class="btn"> <!-- Download CV Button -->
<a href="./assets\documents\Design Thinking in UX.pdf" download>Download CV</a>
</div>
</nav>
</header>
<!-- Main Section -->
<main>
<section class="section home"> <!-- Home Section -->
<div class="container"> <!-- Home Content -->
<div class="intro"> <!-- Left Section -->
<div class="intro-text">HI, I AM HENRETTA</div>
<div class="circle"></div> <!-- circle -->
</div>
<!-- Middle Section -->
<img class="home-image" src="./assets/images/homeimg.png" alt="woman seated"/>
<div class="about-me"> <!-- Right Section -->
<i class="uil uil-arrow-right"></i><!-- icon -->
<p class="about-btn-text">About me</p>
</div>
</div>
</section>
</main>
<footer> <!-- Footer Section -->
<a href="mailto:julienyange@gmail.com" class="email">julienyange@gmail.com</a>
<div class="social-links">
<i class="uil uil-facebook"></i><!-- Facebook -->
<i class="uil uil-twitter"></i><!-- Twitter -->
<i class="uil uil-github"></i><!-- Github -->
<i class="uil uil-linkedin"></i><!-- Linked in -->
</div>
</footer>
</body>
</html>