-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 2.02 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
<!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>AUTOMOVIZ</title>
<!-- favicon -->
<link
id="favicon"
rel="icon"
type="image"
href="./images/index/style2/logo.svg"
/>
<!-- css file -->
<link id="css" rel="stylesheet" href="style2.css" />
<!-- fonts api -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Roboto+Slab:wght@100;200;300;400&family=VT323&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="text">
<div class="theme">
<button id="thm">serene</button>
</div>
<h1>AUTOMOVIZ</h1>
<h4>the smoothest analysis experience</h4>
<div class="btn">
<button>
<h3>
<a href="./explore.html">explore</a>
</h3>
</button>
<button>
<h3>
<a
href="https://share.streamlit.io/bhavneet1492/automoviz/main/app.py"
>industry expert</a
>
</h3>
</button>
<button>
<h3>
<a
href="https://share.streamlit.io/bhavneet1492/automoviz-customer/main/customer.py"
>customer</a
>
</h3>
</button>
</div>
</div>
<div class="top" id="Top"></div>
<div class="bg" id="bg">
<div class="sun" id="sun">
<img src="./images/index/style/sun.svg" alt="sun" />
</div>
<div class="top"></div>
<div class="car">
<div class="top"></div>
<img id="car" src="./images/index/style2/car.svg" alt="car" />
</div>
</div>
<script src="logic.js"></script>
</body>
</html>