-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (31 loc) · 1.12 KB
/
index.html
File metadata and controls
39 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" media="screen and (orientation:portrait)"/>
<link rel="stylesheet" type="text/css" href="landscape.css" media="screen and (orientation:landscape)"/>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title> BIKE WPI </title>
</head>
<body>
<!-- HTML5 article tag for content -->
<div id="content">
<header>BIKE WPI</header>
<!-- WPI image -->
<img id="WPI" src="gompei.jpg" width="320" />
<!-- H1 means 1st level heading -->
<h1>Welcome to Bike WPI</h1>
<!-- P stands for paragraph -->
<p>We believe in bicycles! Everything you need to be a WPI Cyclist.</p>
<!-- Navigation buttons -->
<nav id="main_nav">
<ul>
<!-- LI stands for list item -->
<li><a href="buttons.html">Bike Stores </a></li>
<li><a href="maps.html">Bike Maps </a></li>
<li><a href="ride.html">Go for a Ride</a></li>
</ul>
</nav>
<footer>CS3041: Human-Computer Interaction </footer>
</div>
</body>
</html>