-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (57 loc) · 1.98 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
<!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" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Creative Web design</title>
</head>
<body>
<section class="header">
<div class="header_banner header_intro">
<header class="header_navbar">
<a href="#" class="logo_name">NahA</a>
<ul class="header_navbar-menu">
<li class="menu_item"><a href="#">About</a></li>
<li class="menu_item"><a href="#">Contact</a></li>
</ul>
</header>
<div class="header_content">
<h2>Creative</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ea debitis
exercitationem placeat nihil nam reprehenderit voluptatem omnis
ipsam iusto nulla!
</p>
<a href="#" class="btn btn-readMore">Read more</a>
</div>
<ul class="header_socialIcons">
<h3>Follow me on</h3>
<li class="social-icon">
<a href="https://www.linkedin.com/in/nhangdang107/"
><img src="./img/linkedin-icon.png" alt="Linkedin icon"
/></a>
</li>
<li class="social-icon">
<a href="https://github.com/dangvannhang"
><img src="./img/github-icon.png" alt="Github icon"
/></a>
</li>
</ul>
</div>
<div class="header_banner header_library">
<figure class="library-box">
<img class="" src="./img/cool-girl.jpg" alt="" />
</figure>
<figure class="library-box">
<img class="" src="./img/confident-girl.jpg" alt="" />
</figure>
<figure class="library-box">
<img class="" src="./img/designer.jpg" alt="" />
</figure>
</div>
</section>
</body>
</html>