-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
50 lines (38 loc) · 1.05 KB
/
main.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
<!DOCTYPE html>
<html>
<html lang="en-us">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<head>
<title>NFL MONEYPICKS</title>
</head>
<body>
<ul class="nav_bar">
<li><a href="#home">Home</a></li>
<li><a href="#picks">NFL Picks</a></li>
<li><a href="#how">How to use</a></li>
<li><a href="#about">About</a></li>
</ul>
<h1> NFL MONEYLINE PICKS </h1>
<h3> Preseason Week 1: August 3, 2023 </h3>
<div class="projections">
<p>Projections</p>
</div>
<div class="matchup">
<div class="team1Info">
<span id="team1Name"></span>
<span id="team1Record"></span>
</div>
<img id="team1Logo"></span>
<span id="team1Odds"></span>
<span id="team1result"></span>
<span id="confidenceLevel"></span>
<span id="team2result"></span>
<span id="team2Odds"></span>
<img id="team2Logo"></img>
<span id="team2Name"></span>
<span id="team2Record"></span>
</div>
</body>
</html>