-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.02 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
<!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>My Portfolio</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class = "hero">
<nav>
<h2 class="logo">Portfolio</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About me</a></li>
<a href="#" class="btn">Subcribe</a>
</ul>
</nav>
<div class="content">
<h4>Hello, my name is</h4>
<h1>Anh Chien Vu</h1>
<h3>I am a student at Seneca College</h3>
<div class="newsletter">
<form action="#">
<input type="email" name="email" id="email" placeholder="Enter Your Email">
<input type="submit" name="submit" value="Let's Start">
</form>
</div>
</div>
</div>
<!-- About section -->
<section class="about">
<div class="main">
<img src="https://scontent-yyz1-1.xx.fbcdn.net/v/t39.30808-6/283430056_2800691813565820_3895623816848360508_n.jpg?stp=c0.23.206.206a_dst-jpg_p206x206&_nc_cat=102&ccb=1-7&_nc_sid=da31f3&_nc_ohc=r_cWkyUYBdgAX9Zb9UM&tn=gW4xrJqT1bfl3YwG&_nc_ht=scontent-yyz1-1.xx&oh=00_AfAKym7x4m9rcvUlsQodgU_ndpQ5A-VWSckiozR3bsvZNg&oe=6391B0CA" alt="">
<div class="about-text">
<h2>About Me</h2>
<h5>Student</h5>
<p>abcdefgh</p>
<button type="button">Let's talk</button>
</div>
</div>
</section>
<!-- footer -->
<footer>
<p>Anh Chien Vu</p>
<p>Thank you for passing by my Website!</p>
<div class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
<p class="end">Copyright by Anh Chien Vu</p>
</footer>
</body>
</html>