-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTagTest.html
More file actions
52 lines (52 loc) · 1.52 KB
/
TagTest.html
File metadata and controls
52 lines (52 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TagTest</title>
</head>
<body>
<h1>This page is for testing tags!</h1> <br>
<hr> <br>
<cite>In the company of <b>women</b></cite> <br>
<p>by January Gill <u>O'Neil</u></p> <br>
<div>
Make me laugh over coffee, <br>
make it a double, make it frothy <br>
so it seethes in our delight. <br>
Make my cup overflow <br>
with your small happiness. <br>
I want to hoot and snort and cackle and chuckle. <br>
Let your laughter fill me like a bell. <br>
Let me listen to your ringing and singing <br>
as Billie Holiday croons above our heads. <br>
Sorry, the blues are nowhere to be found. <br>
Not tonight. Not here. <br>
No makeup. No tears. <br>
Only contours. Only curves. <br>
Each sip takes back a pound, <br>
each dry-roasted swirl takes our soul. <br>
Can I have a refill, just one more? <br>
Let the bitterness sink to the bottom of our lives. <br>
Let us take this joy to go. <br>
</div>
<br>
<img src="TagTest/Friendship.jpg" alt="Friends">
<br>
<ul>
<li>Friend*</li>
<li>Friends</li>
<li>Friendly</li>
<li>Friendship</li>
</ul>
<form action="Best Friends">
Name: <input type="text"> <br>
How many years do you know each other: <input type="number"> <br>
<input type="submit" value="Submit"> <br>
</form> <br>
<code>
Span is used to group a series of words or other inline elements to be styled seperatly.
Span is inline and div is block.
</code>
</body>
</html>