-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.28 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Regular expressions hands-on</title>
</head>
<body>
<header>
<h1>Regular expressions hands-on</h1>
</header>
<nav>
<ul>
<li><a href="https://bit.ly/nicar20-regex-slides">Slides</a></li>
<li><a href="https://bit.ly/nicar20-regex-tips">Tipsheet</a></li>
<li><a href="http://regexr.com/">RegExr</a></li>
</ul>
</nav>
<aside id="bodies" class="bodies"></aside>
<main>
<form id="tester" class="tester"></form>
</main>
<footer>
<p>© <a href="http://www.justinmyers.net/">Justin Myers</a>, 2017–2020</p>
</footer>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Sans|Source+Code+Pro" rel="stylesheet">
<link rel="stylesheet" href="css/codemirror.css">
<link rel="stylesheet" href="css/BodySwitcher.css">
<link rel="stylesheet" href="css/Tester.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/bodyContents.js"></script>
<script src="js/codemirror.js"></script>
<script src="js/BodySwitcher.js"></script>
<script src="js/Tester.js"></script>
<script src="js/main.js"></script>
</body>
</html>