-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spy's Website</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="stile.css" />
</head>
<body>
<ul class="navbar">
<li><a class="navbar-title">Spy's Website</a></li>
<li><a class="navbar-item active" href="index.html">Home</a></li>
<li><a class="navbar-item" href="news.html">News</a></li>
<li><a class="navbar-item" href="contact.html">Contact</a></li>
<li><a class="navbar-item" href="tetris.html">Tetris</a></li>
<li style="float:right"><a class="navbar-item" href="about.html">About</a></li>
</ul>
<aside>
<h1>Welcome to Spy's Website!</h1>
<p style="text-align: left">
This is Spy's epic website, this is all done in HTML. WOW! <br>
I sometimes do not like coding, however, this unit has been fun (at times).
</p>
<a href="404.html"><img src="pogg.png" alt="Pogg"></a>
<p class="click-me" style="text-align: center"><a class="click-me" href="404.html">Click Me!!!</a></p>
</aside>
<aside>
<p style="text-align: left">
Here's a little picture of my cat Freddie,<br>
Unfortunately he is no longer with us, so I'd like to show a little image of him.
</p>
<br>
<div id="wrap">
<iframe id="scaled-frame" src="IMG_5907.jpg" width="50%" height="50%">
</iframe>
</div>
</aside>
</body>
<footer>
<marquee direction="right" class="footer" scrollamount="30">Made by Spy, Enjoy!</marquee>
</footer>
</html>