This repository was archived by the owner on Nov 23, 2020. It is now read-only.
forked from MsPries/mspries.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (69 loc) · 3.92 KB
/
index.html
File metadata and controls
80 lines (69 loc) · 3.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="styles/styles.css"> <!-- Stylesheet linked here -->
<title>Programming 4</title> <!-- The title appears on the tab in your browser -->
</head>
<body>
<!-- This is the intro of the page - feel free to suggest a better description of the class -->
<div id="top">
<span id="title">Programming 4 Gallery</span>
<div id="intro">Computer Programing 4: Applied Math and Artificial Intelligence is a class at <a href="http://www.milton.edu">Milton Academy</a> that explores the concepts and applications of artificial intelligence in computer programs. The following projects are created by the students in the 2017-2018 classes.</div>
</div>
<!-- Use this project section as a template -->
<div class="projects group">
<a href="bitcoin-price.html"> <!-- Your filename goes here -->
<div class="col span1">
<div class="project">
<!-- Your image name goes in the src quotes here - if it is a jpg in the img folder, it should be "img/filename.jpg" -->
<img class="project-img" src="https://i.imgur.com/Q0DXjmD.png">
<!-- Your concise and descriptive title goes between the angle brackets here -->
<div class="project-title">The Mystery of Bitcoin’s Price</div>
<!-- Your names are displayed here - I recommend first name, last initial -->
<div class="project-authors">Jeffrey C, Peter M, Zac M</div>
<!-- Your one sentence description goes here - a viewer will click to get more information -->
<div class="project-description">Correlating the erratic changes in Bitcoin’s price with sentiments expressed on reddit</div>
</div>
</div>
</a>
<a href="Team_Survivor.html"> <!-- Your filename goes here -->
<div class="col span1">
<div class="project">
<img class="project-img" src="img/Survivor_UK.jpg" style="width:200px;height:200px;">
<div class="project-title">Who Survives?</div>
<div class="project-authors">Chris P, Carson P, Jimmy D</div>
<div class="project-description"><font size="2" face="Times New Roman" color = white>This project predicts how a contestant places at the end of a season in the reality TV show "Survivor" based upon the content of their 'confessionals'</font></div>
</div>
</div>
</a>
<a href="twitter.html"> <!-- Your filename goes here -->
<div class="col span1">
<div class="project">
<!-- Your image name goes in the src quotes here - if it is a jpg in the img folder, it should be "img/filename.jpg" -->
<img class="project-img" src="https://c1.staticflickr.com/9/8183/28736470374_f9fbe46dfe_b.jpg">
<!-- Your concise and descriptive title goes between the angle brackets here -->
<div class="project-title">Tweet Predicter</div>
<!-- Your names are displayed here - I recommend first name, last initial -->
<div class="project-authors">Ethan B, Jack W, Jessica W</div>
<!-- Your one sentence description goes here - a viewer will click to get more information -->
<div class="project-description">This project can classify tweets as being written by Hilary Clinton or Donald Trump. </div>
</div>
</div>
</a>
<a href="kickstarter.html"> <!-- Your filename goes here -->
<div class="col span1">
<div class="project">
<!-- Your image name goes in the src quotes here - if it is a jpg in the img folder, it should be "img/filename.jpg" -->
<img class="project-img" src="img/yes.png">
<!-- Your concise and descriptive title goes between the angle brackets here -->
<div class="project-title">A Kickstart to Kickstarter</div>
<!-- Your names are displayed here - I recommend first name, last initial -->
<div class="project-authors">Scott C, Ben S, Vijaya A</div>
<!-- Your one sentence description goes here - a viewer will click to get more information -->
<div class="project-description"> Predicts whether a Kickstarter project will succeed or not. </div>
</div>
</div>
</a>
</div>
</body>
</html>