-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.42 KB
/
Copy pathindex.html
File metadata and controls
66 lines (59 loc) · 2.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!-- David Shamas 01-18-224 -->
<!-- Tells the browser this is HTML compatible page -->
<!DOCTYPE html>
<html lang="en">
<!-- the head section has info for the browser and search engines
Do not include any content for the user in the head section -->
<head>
<!-- this will link our CSS page to our HTML page; href is the name of the CSS file;
rel = stylesheet tells the browser this is our style sheet -->
<link rel="stylesheet" href="main.css">
<!-- Any character may be in the page -->
<meta charset="UTF-8">
<!-- This is for mobile devices to show the page better -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- this titel will appear in the browser tab. Make it short and simple -->
<title>CSC102 Index</title>
<!-- Link the JavaScript file to this page -->
<script src="code.js"></script>
</head>
<!-- everything we want to show the user in your body section -->
<body>
<!-- create a header section -->
<header>
<!-- This is the navigation menu section -->
<nav>
<!--the a tag is the anchor tag - it creates a hyperlink -->
<a href="index.html"> Home </a>
</br> <a href="boards.html">Boards</a>
</br> <a href="game.html">Game</a>
</br> <a href="palindrome.html">Palindrome</a>
</br> <a href="basics.html">Basics</a>
</br> <a href="strings.html">Strings</a>
</br> <a href="w11sound.html">Sound</a>
</br> <a href="w13table_html.html">Table</a>
</nav>
</header>
<!-- add header text. there should be 1 and only 1 h1 tag on a page -->
<h1>Welcome to My website</h1>
<!-- This is the button that will start our image moving around -->
<input type="button" onclick="startImageMove();" value="Start Moving Image">
<!-- This is the button that will stop our image moving around -->
<input type="button" onclick="stopImageMove();" value="Stop Moving Image">
<!--this is a paragraph by default there will be spacing before and after
the p tag -->
<p>
<img id="memeImage" src="./images/meme.image.png" alt="Meme Image" width="1000">
</p>
<!-- Add the footer to the bottom of the page -->
<footer>
<!--</br> breaks a new line -->
David Shamas </br>
University of Advancing Technology </br>
2625 W Baseline Rd. </br>
Tempe, AZ 85283</br>
</footer>
<!-- make sure the closing body tag is at the bottom of the page -->
</body>
<!-- closing html at the end of every file -->
</html>