-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (74 loc) · 4.28 KB
/
index.html
File metadata and controls
84 lines (74 loc) · 4.28 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
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Game Collector</title>
<link rel="icon" href="https://live.staticflickr.com/7143/6440077107_23fd80e619.jpg">
</head>
<body style="background-color: #0e5135;">
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #d4ce46;">
<a class="navbar-brand" href="#"> <h1 class='display-4' id='logo'>GameBox</h1></a>
</h3>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<!-- <a class="nav-link" id="all-games"href="#"> All Games <span class="sr-only">(current)</span></a> -->
</li>
<li class="nav-item active">
<a class="nav-link" href="#"> <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<form class="form-inline">
<label class="my-1 mr-2" id='all-games' for="inlineFormCustomSelectPref" onmouseover="" style="cursor: pointer;">All Games</label>
<label class="my-1 mr-2" id='my-collect' for="inlineFormCustomSelectPref" onmouseover="" style="cursor: pointer;">My Collection</label>
<button class="btn btn-outline-success my-1 mr-2" id="sort" style="color: #0e5135; border-color: #0e5135; font-weight: bold"; type="submit">Sort A-Z</button>
<select class="custom-select my-1 mr-sm-2" id="inlineFormCustomSelectPref">
<option selected>User Name</option>
</select>
<label class="my-1 mr-2" id='create-new' for="inlineFormCustomSelectPref" onmouseover="" style="cursor: pointer;">Create New User</label>
</form>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" id="search" style="color: #0e5135; border-color: #0e5135; font-weight: bold;" type="submit">Search</button>
</form>
</div>
</h3>
</nav>
<div class='row' >
<div class='col-lg-3'">
<div class="profile-container" id='user-profile'>
</div>
</div>
<div class='col-lg-8'>
<div class='filter' id="genre-select">
<form>
<div class="form-row align-items-center">
<div class="col-auto my-1">
<label class="mr-sm-2" for="inlineFormCustomSelect">Find by Genre</label>
<select class="custom-select mr-sm-2" id="inlineFormCustomSelect1">
<option selected>Choose...</option>
</select>
</div>
</div>
</div>
</div>
<div class='container' id='all-games-container'>
</div>
<button id="myBtn"><a href="#top" style="color: white"><svg width="1.5em" height="1.5em" viewBox="0 0 16 16" class="bi bi-chevron-double-up" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M7.646 2.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 3.707 2.354 9.354a.5.5 0 1 1-.708-.708l6-6z"/>
<path fill-rule="evenodd" d="M7.646 6.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 7.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/>
</svg></a></button>
<script src="src/script.js"></script>
</body>
</html>