-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.59 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.59 KB
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
<!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>Landing Page</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1>Landing Page</h1>
<nav>
<ul>
<li><a href="https://github.com/splwdev">My Github</a></li>
<li><a href="#Portfolio">Portfolio</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<section class="main-content">
<h2>Mini Project Landing Page</h2>
<figure>
<img src="assets/images/flag.png" alt="australian flag">
<figcaption>Australian Flag</figcaption>
</figure>
</section>
<section class="input-form">
<h2><a id="contact">Contact Form</a></h2>
<form action="">
<ul>
<li>
<label for="name">Name:</label>
<input type="text" name="name" id="users-name" class="form-controls">
</li>
<li>
<label for="email">Email:</label>
<input type="text" name="email" id="email-address" class="form-controls">
</li>
<button type="submit">Send</button>
</ul>
</form>
</section>
</main>
<footer></footer>
</body>
</html>