-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 loc) · 1.73 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
<!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 Landing Page</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<nav class="text-right">
<ul >
<li> <a href="https://github.com/jmruiz96">Github</a></li>
<li> <a href="#"> Portfolio</a></li>
<li> <a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div></div>
<main>
<figure>
<h1 class="text-center">My New Website</h1>
<img src="./assets/images/image_1.png" alt="Coming Soon">
<figcaption class="text-center">There will be a picture here coming soon. </figcaption>
</figure>
<section id="contact">
<h2 class="text-center"> Contact Me</h2>
<form>
<ul >
<li>
<label class="text-right" for="name">Name:</label>
<input type="name" id="email" name="user-email">
</li>
<li>
<label class="text-right" for="email">Email:</label>
<input type="text" id="email" name="user-email">
</li>
</ul>
<div class="text-center">
<button class="text-center">
Send
</button>
</div>
</form>
</section>
</main>
<footer class="text-center">
<p>© 2022 My New Website Productions</p>
</footer>
</body>
</html>