-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.74 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Index.html</title>
<meta charset="UTF-8">
<meta name="description" content="Introduction to designing and making Web sites">
<meta name="keywords" content="Web Design,HTML,CSS">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="myStyle.css"></head>
<body class="w3-container">
<section>
<header>
<h2>Web Programing Assignments</h2> <!-- My first heading tag -->
</header>
<div class="w3-bar w3-pink">
<a href="webprogramming/helloworld.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="index.html">Hello World</a>
<a href="webprogramming/someevents.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="someevents.html">Some Events</a>
<a href="webprogramming/fortuneteller.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="fortuneteller.html">Fortuneteller</a>
<a href="webprogramming/numbercheck.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="Number Check">Number Check</a>
<a href="webprogramming/areacodes.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="Area Code">Area Code</a>
<a href="webprogramming/questionnaire.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="Questionnaire">Questionnaire</a>
<a href="webprogramming/canvas.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="canvas.html">Canvas</a>
<a href="webprogramming/jquerystuff.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="jquerystuff.html">jquery</a>
<a href="webprogramming/jqueryevents.html" class="w3-bar-item w3-mobile w3-hover-indigo" title="jqueryevents.html">jqueryevents</a>
</div>
</section>
</body>
</html>