-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>JK Code | Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="main-header">
<nav class="nav">
<ul>
<li><a href=index.html>HOME</a></li>
<li><a href=lab.html>TEST LAB</a></li>
<li><a href=library.html>LEARNING RESOURCES</a></li>
</ul>
</nav>
<h1 class="main_title">Jake's Code Workshop</h1>
<h2 class="subtitle">Somehwere between a dojo and a hangar...</h2>
</header>
<section class="main_section">
<p>
Welcome to the Workshop! Head to the Lab to try out the latest code (if you dare...) or head over to the Learning Resources area for references for great code resources from around the web.
</p>
</section>
</body>
</html>