-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (67 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>F1 Searcher</title>
<!-- ############ Favicon ############ -->
<link rel="icon" type="image/x-icon" href="./Assets/Images/icon.png">
<!-- ############ Bulma CSS ############ -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
<!-- ############ Montserrat Font ############ -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- ############ Titillium Font ############ -->
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Titillium+Web:wght@200;300;400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./Assets/css/styling.css" />
</head>
<body class="body-index my-background-color">
<!--############ NAVBAR ############ -->
<nav class="navbar my-background-color">
<div class="container my-background-color">
<div class="navbar-brand" href="./index.html">
<a class="navbar-item" href="./index.html">
<img id="icon" src="./Assets/Images/icon.png">
</a>
<a role="button" class="navbar-burger my-navbar-text-color" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navMenu" class="navbar-menu my-background-color">
<div class="navbar-end my-background-color">
<a href="./index.html" class="navbar-item my-background-color my-navbar-text-color">Home</a>
<a href="./Assets/html/driver-comparison.html" class="navbar-item my-background-color my-navbar-text-color">Driver Comparison</a>
<a href="./Assets/html/standings.html" class="navbar-item my-background-color my-navbar-text-color">Live Standings</a>
<a href="./Assets/html/nextRace.html" class="navbar-item my-background-color my-navbar-text-color">Next Race</a>
<a href="./Assets/html/about-us.html" class="navbar-item my-background-color my-navbar-text-color">About us</a>
</div>
</div>
</div>
</nav>
<!-- ############ IMAGE ############ -->
<section class="header-image" id="home_section"></section>
<!-- ############ FOOTER ############ -->
<footer class="footer footer-background-color">
<div class="content has-text-centered footer-background-color">
<p class="my-normal-text-color line-height">
F1-Searcher is made with love 💖 by <a href="https://www.linkedin.com/in/david-tc/">David Torres</a>,
<a href="https://github.com/JorgeBesnierB">Jorge Besnier</a>. and
<a href="https://github.com/jcuetos97">Juan José Espinosa</a>.
</p>
</div>
</footer>
<!-- ############ SCRIPTS ############ -->
<script src="./Assets/js/scriptAPI1.js"></script>
</body>
</html>