-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome!</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta name="HandHeldFriendly" content="true"/>
<meta charset="utf-8"/>
</head>
<body>
<div class="content">
<div class="centered">
<div class="topNav">
<a class="active" href="#index">Home</a>
<span class="navigationSpace"></span>
<a href="news.html">News</a>
<span class="navigationSpace"></span>
<a href="contact.html">Contact</a>
<span class="navigationSpace"></span>
<a href="about.html">About</a>
</div>
<h1>Welcome to my test website!</h1>
<p>This is just a test website. I am trying to learn HTML, CSS, and Javascript to build a website.</p>
<button class="button" onclick="changePic()">Show Picture</button>
<div></div>
<img id="pic" src="resources/IMG_0233.jpg" width="302" height="403" style="visibility:hidden"></img>
<p id="underText" style="visibility:hidden">Look at my picture!</p>
<div id="time" class="footer"></div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>