-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>snacko's website</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rel="icon" href="images/favicon.png">
<script src="script.js"></script>
</head>
<div class="top">
<h1>Snacks' cool website</h1>
</div>
<div class="header">
<nav class="snack-nav">
<a href="index.html" title="Go to index"><strong>Home</strong></a>
<a href="witchmacs.html" title="Witchmacs page"><strong>Witchmacs</strong></a>
<a href="programs.html" title="My programs"><strong>My list of programs</strong></a>
</nav>
</div>
<body>
<p>This is Snacks' cool website.<br/>
I made this page as a way to practice my HTML, CSS and JS knowledge.<br/>
Currently, all three are close to nil, but everybody starts somewhere!<br/></p>
<img src="images/marisa.png" class="marisa" onmouseover="marihover(this);" onmouseout="mariunhover(this);">
</body>
<footer></footer>
</html>