-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweek7quizz.html
More file actions
59 lines (56 loc) · 1.44 KB
/
week7quizz.html
File metadata and controls
59 lines (56 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>This is a heading 1</h1>
<p>This is a paragraph. Below is an image (use any image url you choose).</p>
<img src="https://i.pinimg.com/736x/2f/3f/49/2f3f4975a8b2011376c05bb2fb314cbf--warhammer--sci-fi-art.jpg"
alt="Raven Guard Chapter Master Kayvann Shrike" height="400" />
<br>
<a href="https://www.google.com">Link to www.google.com</a>
<p>Race results:</p>
<ol>
<li>Samantha</li>
<li>Ronny</li>
<li>Sally</li>
</ol>
<p>Favorite Foods</p>
<ul>
<li>Pizza</li>
<li>Fish</li>
<li>Pasta</li>
</ul>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email Address</th>
</tr>
<tr>
<td>Tom</td>
<td>Sawyer</td>
<td>t.sawyer@yahoo.com</td>
</tr>
<tr>
<td>Huck</td>
<td>Finn</td>
<td>h.finn@aol.com</td>
</tr>
<tr>
<td>Mark</td>
<td>Twain</td>
<td>m.twain@gmail.com</td>
</tr>
</table>
<h2>Login</h2>
<form>
<input type="text" placeholder="Username"><br>
<input type="text" placeholder="Password"><br>
<input type="submit">
</form>
</body>
</html>