-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathToyota_Fortuner.html
57 lines (53 loc) · 1.56 KB
/
Toyota_Fortuner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Toyota_Fortuner</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<script
src="https://kit.fontawesome.com/32599b4c15.js"
crossorigin="anonymous"
></script>
<style>
body {
color: white;
/* Change font color to white */
background-color: black;
/* Change background color to black */
}
.tab-pane {
padding: 40px;
/* Add padding to tab content */
}
.nav-link {
color: white;
/* Change the color of non-active tabs to white */
}
.nav-link.active {
color: black;
/* Change the color of the active tab back to black */
}
.carousel-img-size {
height: 85vh;
}
</style>
</head>
</html>