-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
102 lines (92 loc) · 5.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap & Style Links -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="Assets/bootstrap.css">
<link rel="stylesheet" type="text/css" href="Assets/style.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<!-- Page Title -->
<title>Steam Prediction Analysis Dashboard</title>
<!-- Create the navigation bar at the top -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary" id="navibar" style='background-color:black !important'>
<strong><a class="navbar-brand" href="index.html">Steam Data <i class='fab fa-steam' style='font-size:24px;color:white'></i> Home</a></strong>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-expanded="false"></button>
<div class="navbar navbar-collapse">
<ul class="nav navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" id="navlink" href="machine_learning.html">
<i class="fas fa-laptop-code" style='color:lime'></i>
Machine Learning Model</a>
</li>
<li class="nav-item">
<a class="nav-link" id="navlink" href="visuals.html">
<i class="fas fa-chart-area" style='color:lime'></i>
Visualizations</a>
</li>
<li class="nav-item">
<a class="nav-link" id="navlink" href="user_base.html">
<i class="fas fa-user-alt" style='color:lime'></i>
Steam User Base</a>
</li>
</ul>
</div>
<a class="nav-text">Steam Data Analysis Web Visualization Dashboard <i class="fab fa-steam-symbol"></i> </a>
</nav>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="expand">
<br>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideToggle("slow");
});
});
</script>
<style>
#panel, #flip {
padding: 5px;
text-align: center;
background-color: #edf2f4;
border: solid 1px #c3c3c3;
color: lime
}
#panel {
padding: 50px;
display: none;
}
</style>
<body>
<div id="flip" style="background-color:#145385">Welcome to the Steam Data Analysis Web Visualization Dashboard!<br>Click for site information<Welcome to the Latitude Analysis Web Visualization Dashboard!/div>
<div id="panel"> <p> Steam is a digital distribution service for PC games. This cloud-based gaming library allows users to access purchased games from a storefront as well as download purchased games from a content delivery network, and also match with other users for multiplayer gaming. With over 150 million users across 194 countries, Steam represents a large dataset of gaming data perfect for analyzing. This project aims to retrieve and visualize the data available from Steam. </p>
<p>
Machine Learning is implemented to use the data to predict if a game will be a success or not. This information will help video game publishers to determine whether a certain genre or game tag will have the likelihood of success. This tool may also assist with assigning an appropriate price to sell a new game at. </p>
<p>
This site also displays visualizations created to explore and visualize the dataset as well as to help guide the machine learning models.
</p>
</div>
<h3></h3><br>
<div class="pull-left">
<figure>
<img width="900" height="400" src="https://cdn.worldvectorlogo.com/logos/steam.svg" class="img-fluid" alt="SteamLogo"/>
</figure>
</div>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</body>
<!-- Footer -->
<footer>
<br>
<div class="footer">Copyright 2020 © DU Bootcamp Final Group (Madison, Sarah, Kevin, Andrew, Solongo, Robin) </div>
</footer>
</html>