forked from cs4804-24c/final
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (32 loc) · 1.25 KB
/
index.html
File metadata and controls
46 lines (32 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NFL Draft Visual</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>NFL Draft Visual</h1>
</header>
<nav tabindex="0">
<div class="menu_dropdown">
<p class = "thislink">Home</p>
<p><a href="test2.html">Final Visualization</a></p>
<p><a href="ProcessBook.html">Process Book</a></p>
<p><a href="Presentation.html">Presentation</a></p>
</div>
</nav>
<main>
<section class = "content">
<h1>Home Page</h1>
<p>This project aims to answer the questions of what college conferences produce the highest picked prospects, and if there exists pipelines between college conferences and NFL teams. To answer these questions we created a Sankey diagram and a stacked bar chart. The user can use interactive filters to successfully answer more specific questions with the visuals. To read more about the visual go to the Process Book page. To see the visual go to the Final Visual page.</p>
<p>Navigate to project requirements using navigation bar.</p>
</section>
</main>
<footer>
<p><a href="index.html">Home</a></p>
</footer>
</body>
</html>