-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.25 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
<!DOCTYPE html>
<head>
<title>Richard Wang</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Ruda" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css">
</head>
<body style="background-color:white">
<div id='nav'>
<p><a href="/#" class="link">home</a> <a href="/#/about" class="link">about</a>
<a href="/#/code" class="link">code</a> <a href="/#/words" class="link">write</a>
<a href="/#/connect" class="special-link"><span id="connect">connect</span></a>
</p>
</div>
<main></main>
<script src="tag/main.tag" type="riot/tag"></script>
<script src="tag/home.tag" type="riot/tag"></script>
<script src="tag/about.tag" type="riot/tag"></script>
<script src="tag/words.tag" type="riot/tag"></script>
<script src="tag/code.tag" type="riot/tag"></script>
<script src="tag/connect.tag" type="riot/tag"></script>
<script src="https://cdn.jsdelivr.net/riot/2.3.18/riot+compiler.min.js"></script>
<script>
riot.mount('*');
riot.route.start(true);
</script>
</body>