-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
29 lines (25 loc) · 1.01 KB
/
Copy pathsetting.html
File metadata and controls
29 lines (25 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<style>
body {
height: 350px;
max-height: 350px;
width: 300px;
overflow: scroll;
}
</style>
</head>
<body>
<div id="setting-tab" class="container bg-primary">
<h2>ScoreMaster</h2>
</div>
<div id="teams-tab" class="bg-light">
<img src="/images/houston_rockets.png" alt="Houston Rockets" class="fav-team col-2">
<img src="/images/michigan.png" alt="Michigan" class="fav-team col-2">
</div>
</body>
</html>