-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (89 loc) · 3.58 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
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
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>This is just a test page</title>
<meta name="Marcel's Site" content="Description">
<link rel="stylesheet" type="text/css" href="index_style.css">
<link href='https://fonts.googleapis.com/css?family=VT323' rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
<body>
<header>
<h1><a href="index.html"> THE MARCEL HEROLD TRIBUNE TIMES </a></h1>
<nav>
<ul style="list-style-type:none" class="navLists">
<li>
<a href="index_news.html"> World News </a>
</li>
<li>
<a href="index_sports.html"> Sports </a>
</li>
<li>
<a href="index_gossip.html"> Gossip </a>
</li>
<Li>
<a href="index_lunch.html"> What's for lunch? </a>
</Li>
<Li>
<a href="fb"> Errors and Omissions </a>
</Li>
<Li>
Reprot a Tipo
</Li>
</ul>
</nav>
</header>
<div class="divClassOne"></div>
<main>
<h2> Alligator Swamped with Questions after Questionable Incident!</h2>
<p>
<em>Tallahassee, Florida</em> - A large alligator bit a man's butt last week. <br />
The man sued the gator for sexual harassment and they settled <br />
out of swamp. The disgruntled alligator issued a brief statement this morning. <br />
"The whole allegation was a croc of shit. Why would I be interested in <br />
a man's butt? I have reptile dysfunction," said Al A. Gator.
</p>
<div></div>
<img src="alligator.jpg" alt="man bit by gator in butt"/>
<p>
This isn't the first time gators have been in legal trouble recently.
</p>
<blockquote cite="https://www.teamspeedkills.com/2017/9/26/16363558/florida-gators-suspensions-felony-charges-credit-card-scam-scandal">
<a href="https://www.teamspeedkills.com/2017/9/26/16363558/florida-gators-suspensions-felony-charges-credit-card-scam-scandal"><p>"Nine Florida Gators named in sworn complaints, face possibility of felony charges."</a>
</blockquote>
<p> There may be another suspect still at large. The Tallahassee Police Department <br />
asks for anyone with info that may lead to further arrests to contact them.</p>
<h3>Description of the suspect: </h3>
<ul>
<li>9 feet long</li>
<li>Green scales</li>
<li>Large overbite</li>
<li>Warm blooded</li>
<li>Poor hygiene</li>
</ul>
<h4> Here is that info again, but in a table this time.</h4>
<table>
<tr>
<th>Length</th>
<th>Color</th>
<th>Facial Features</th>
<th>Blood Type</th>
<th>Other details</th>
</tr>
<tr>
<td>9 feet</td>
<td>Green scales</td>
<td>Extreme overbite</td>
<td>Warm</td>
<td>Smells bad</td>
</tr>
</table>
</main>
</body>
</html>