-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarea9.html
46 lines (41 loc) · 1.16 KB
/
tarea9.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
padding: 8px;
background-color: #dddddd;}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="races.html">Races</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="runninglog.html">Running Log</a></li>
<li><a href="myaccount.html">My Account</a></li>
<li><a href="logout.html">Log out</a></li>
</ul>
<p>Hello, Stranger!</p>
<br>
<h1>Welcome to Runners Home</h1>
<br>
<p>Runners Home <sup>TM</sup> is dedicated to providing you with:</p>
<a href="url">Runners Home <sup>TM</sup> The most up--to-date information or running races:</a> <br>
<a href="url">the best resources for runners </a>
</body>
</html>