-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.94 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.94 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
<html>
<head>
<title>
Code Fellows Events Information
</title>
<link href="index.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<h1>Code Fellows Event Information</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="parking-new.html">Parking</a></li>
<li><a href="food.html">Food</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<section>
<h1>Code Fellows Events Information</h1>
</section>
<section class="row">
<article class="column">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/bb/Feature_parking.svg"/>
<h2>Parking</h2>
<p>For parking information. Go to <a href="file:///C:/Users/aschi/Projects/parking(new).html">Parking</a></p>
</article>
<article class="column">
<img src="food.png"/>
<h2>Food</h2>
<p>For restaurant location and food information. Go to <a href="food.html">Food</a></p>
</article>
<article class="column">
<img src="Calendar.jpeg"/>
<h2>Events</h2>
<p>For event information. Go to <a href="events.html">Events</a></p>
</article>
<article class="column">
<img src="about.jpg"/>
<h2>About</h2>
<p>For more information about our organization. Go to <a href="about.html">About</a></p>
</article>
</section>
<footer>
Copyright, etc.
</footer>
</body>
</html>