-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
44 lines (35 loc) · 1.4 KB
/
template.html
File metadata and controls
44 lines (35 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>TEMPLATE - The Gloopzone</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon-static.ico">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
</head>
<body>
<header style="border: #9d6ec5; border-width:5px; border-style: dashed;">
<h1>Welcome to the Templatezone!</h1>
<h4 style="font-style: italic;">Home to the template I use for new pages.</h4>
</header>
<ul class="nav">
<li class="nav"><a href="index.html">Home</a></li>
<li class="nav"><a href="music.html">Music</a></li>
<li class="nav"><a href="games.html">Games</a></li>
<li class="nav"><a href="buttons.html">Buttons</a></li>
<li class="nav"><a href="about.html">About</a></li>
</ul>
<p>
Content goes here!
</p>
<footer style="border: #9d6ec5; border-width:5px; border-style: dashed;">
<h3>Part of the Team Prism webring!</h3>
<p>
<a class="button" href="https://pictocat.team-prism.rocks/"><-- Pictocat</a>
<a class="button" href="https://gloopbloop.pages.team-prism.rocks/">GloopBloop</a>
<a class="button" href="https://fryingpan.pages.team-prism.rocks/">FryingPan --></a>
</p>
</footer>
</body>
</html>