-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·58 lines (45 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!--
Reading The NYTimes
ICM Assignment
19 October 2016
Text from Thernstrom, Melanie, "The Anti-Helicopter Parent’s Plea: Let Kids Play!", The New York Times Magazine, Oct. 19 2016, <http://www.nytimes.com/2016/10/23/magazine/the-anti-helicopter-parents-plea-let-kids-play.html>
==========
-->
<!DOCTYPE html>
<html>
<head>
<!-- CDN Jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="rita-full.js"></script>
<script src="key.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/addons/p5.dom.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
</head>
<body>
<div id="menu">
<h1 id ="noun">NOUN</h1>
<h1 id ="noun-prop">PROPER NOUN</h1>
<h1 id ="pronoun">PRONOUN</h1>
<h1 id ="verb">VERB</h1>
<h1 id ="adjective">ADJECTIVE</h1>
<h1 id ="adverb">ADVERB</h1>
</div>
<section id ="arts">
<h2>ARTS</h2>
</section>
<section id ="business">
<h2>BUSINESS</h2>
</section>
<section id ="sports">
<h2>SPORTS</h2>
</section>
<section id ="tech">
<h2>TECH</h2>
</section>
<script src="sketch.js"></script>
</body>
</html>