-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Test Website</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<header>
<nav>
<ul>
<li id="toparea">GitHub</li>
<li id="toparea">Portfolio</li>
<li id="toparea">Contact</li>
</ul>
</nav>
</header>
<section>
<h1>My New Website</h1>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEjmtpKYJpCvCXEcNp3zzOSED-FjnP4UsrRg&usqp=CAU"/>
<h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h2>
</section>
<section id="contact-section">
<h2>Contact Me</h2>
<div>
<h3>Name:</h3>
<label for="fname">First name:</label>
<input type="text" id="info" name="fname">
<label for="email">Email</label>
<input type="text" id="info" name="email">
<h3>Email:</h3>
<button type="button">SEND</button>
</div>
</section>
<footer>
<h1>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h1>
</footer>
</body>
</html>