-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (60 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
61 lines (60 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<style>
.highlight {
color: white;
background-color: black;
padding: 10px;
width: 250px;
text-align: center;
}
</style>
</head>
<body>
<h1>THE TITLE OF YOUR WEBPAGE</h1>
<button id="btn">Click Me</button>
<div id="container"></div>
<section>
<img
src="dinosaur.png"
alt="A red Tyrannosaurus Rex: A two legged dinosaur standing upright like a human, with small arms, and a large head with lots of sharp teeth."
/>
<p>
Here we will add a link to the
<a href="https://www.mozilla.org/">Mozilla homepage</a>
</p>
</section>
<form action="#" method="post">
<fieldset>
<legend>Apply for Border</legend>
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name" />
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name" />
<label for="age">Age:</label>
<input type="number" min="16" id="age" name="age" />
<div>
<button type="submit">Apply</button>
</div>
</fieldset>
</form>
<div class="container3">
<div id="header">Header</div>
<div id="nav">Nav</div>
<div id="sidebar">Sidebar</div>
<div id="article">Article</div>
<div id="footer">Footer</div>
</div>
<div class="fireworks"></div>
<div class="output">
<p class="admitted">Admit:</p>
<p class="refused">Refuse:</p>
</div>
</body>
</html>