-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (111 loc) · 3.35 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
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./assets/img/favicon.ico" type="image/x-icon">
<title>Lobe Tour</title>
<script src="https://kit.fontawesome.com/52b7da0240.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="container">
<a class="logo" href="#">
<img src="./assets/img/logo-lobe.jpg" alt="Logo" width="100px" height="50px"/>
</a>
<nav>
<ul>
<li>Overview</li>
<li>Examples</li>
<li>Tour</li>
<li>Blog</li>
<li>Help</li>
</ul>
</nav>
<a class="button" href="#">
Download
</a>
<button class="menu-button">
<i class="fa-solid fa-lg fa-bars"></i>
</button>
</header>
<!-- On mobile device -->
<nav class="menu-on-mobile-device">
<ul>
<li>Overview</li>
<li>Examples</li>
<li>Tour</li>
<li>Blog</li>
<li>Help</li>
</ul>
<a class="button" href="#">
Download
</a>
</nav>
<main class="container">
<section class="container hero">
<h1>Lobe <span class="green">Tour</span></h1>
<p>Build your first machine learning model in ten minutes. No code or experience required.</p>
<!-- Insert the video section -->
<img src="./assets/img/video.jpg" alt="Video Preview" class="video"/>
</section>
<section class="container cta">
<h1>Train your app with Lobe</h1>
<a class="button" href="#">
Download
</a>
</section>
</main>
<hr/>
<footer class="container">
<div>
<a class="logo" href="#">
<img src="./assets/img/logo-lobe.jpg" alt="Logo" width="80px" height="40px"/>
</a>
<ul>
<li>A product by Microsoft.</li>
<li>All rights reserved.</li>
<li>Microsoft 2021</li>
</ul>
</div>
<div>
<h4>About</h4>
<ul>
<li>Download</li>
<li>Overview</li>
<li>Examples</li>
<li>Blog</li>
</ul>
</div>
<div>
<h4>General</h4>
<ul>
<li>Notice</li>
<li>License</li>
<li>Press Inquiry</li>
<li>Press Images</li>
</ul>
</div>
<div>
<h4>Ressources</h4>
<ul>
<li>Help</li>
<li>Tour</li>
<li>Contact</li>
<li>Privacy</li>
</ul>
</div>
<div class="social-media">
<a class="rounded" href="#">
<i class="icon fa-sharp-duotone fa-md fa-solid fa-comment"></i>
</a>
<a class="rounded" href="#">
<i class="icon fa-brands fa-md fa-twitter"></i>
</a>
<a class="rounded" href="#">
<i class="icon fa-brands fa-md fa-youtube"></i>
</a>
</div>
</footer>
</body>
</html>