-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FR13 | Home</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<style>
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
</style>
</head>
<body>
<p style="text-align:center">
<strong><a href='index.html'>Home</a></strong> | <a href='targets.html'>Targets</a> | <a href='members.html'>Members</a> | <a href='items.html'>Items</a> | <a href='chainingV2.html'>Chaining (WIP)</a>
</p>
<hr>
<p style="text-align:center">
Questions? Ask <a href='https://www.torn.com/profiles.php?XID=2131931#/'>Raith [2131931]</a>.
</p>
<script>
</script>
</body>
</html>