-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
92 lines (91 loc) · 2.5 KB
/
test.html
File metadata and controls
92 lines (91 loc) · 2.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<style>
table,
th,
td {
border: 1px solid black;
padding: 5px;
border-collapse: collapse;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Cheat Sheet</title>
</head>
<body>
<h1>practice table</h1>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<th>January</th>
<th>$100</th>
</tr>
</table>
<br>
<hr>
<br>
<form action="process.php" method="POST">
<div>
<label>First Name</label>
<input type="text" name="firstName"
placeholder="Enter first name">
</div>
<br>
<div>
<label>Last Name</label>
<input type="text" name="lastName">
</div>
<br>
<div>
<label>Email</label>
<input type="email" name="Email">
</div>
<br>
<div>
<label>Message</label>
<textarea name="message" id="message" cols="30" rows="4"></textarea>
</div>
<br>
<div>
<label>Gender</label>
<select name="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<br>
<div>
<label>Age:</label>
<input type="number"name="Age">
</div>
<br>
<div>
<label>Birthday:</label>
<input type="date" name="birthday">
</div>
<br>
<input type="submit" name="Submit" value="Submit">
</form>
<button>Click Me</button>
<!-- Image -->
<br>
<a href="img/Like_Mike.jpeg"></a>
<img src="img/Like_Mike.jpeg" alt="Michael Jordan" width="200">
<!--Quotations-->
<blockquote cite="https://www.lipsum.com/">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
</blockquote>
<p>
The <abbr title="World Wide Web">WWW</abbr> is awesome
</p>
<p>
<cite>HTML cheat sheet</cite> by Garrett Deese
</p>
</body>
</html>