-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 4.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Carrento</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/style.css" />
<script
src="https://kit.fontawesome.com/7e86c8c237.js"
crossorigin="anonymous"
></script>
</head>
<body>
<img class="home-bg" src="./assets/background.jpg" alt="carbg" />
<nav id="toolbar">
<div class="mob-nav-container">
<a class="nav-bars">
<i class="fa-sharp fa-solid fa-bars fs-1 fw-bold"></i>
</a>
</div>
<ul id="toolbar-items" class=" d-none list-unstyled justify-content-end">
<i class="fa-brands fa-facebook-f p-2"></i>
<i class="fa-brands fa-twitter p-2"></i>
<li class="toolbar-item p-2">English</li>
<li class="toolbar-item p-2">My Page</li>
<li class="toolbar-item p-2">Logout</li>
</ul>
<div class="nav-items d-none list-unstyled justify-content-between px-4">
<div class="logo d-flex flex-row align-content-center justify-content-center align-items-center">
<img class="logo-img" src="./assets/icons/logo.png" alt="logo">
<div class="vertical-bord"></div>
<a href="./" class="carento text-decoration-none fs-2 fw-bold">Carento.</a>
</div>
<ul class="nav-btns d-flex list-unstyled justify-content-end align-content-center align-items-center m-0">
<li class="nav-item"><a class="text-decoration-none text-dark fw-normal" href="./">Home</a></li>
<li class="nav-item"><a class="text-decoration-none text-dark fw-normal" href="./about.html">About</a></li>
<li class="nav-item"><a class="text-decoration-none text-dark fw-normal" href="">Join</a></li>
<li class="nav-item"><a class="text-decoration-none text-dark fw-normal" href="">Sponsor</a></li>
<li class="nav-item"><a class="text-decoration-none text-dark fw-normal" href="">News</a></li>
<li class="nav-item special p-2 px-4"><a class="text-decoration-none text-dark fw-normal" href="">Our Offers</a></li>
</ul>
</div>
</nav>
<section class="hero">
<p class="hello">"Rent your Comfort,"</p>
<h1 class="title">Creative Cars Renting Website 2022</h1>
<p class="home-para">
A joyful celebration believing in the value of openness and
sharing,creating a positive change with people from over 80 countries is
taking place in october, in korea
</p>
<p class="date">2015.10.15(THU) ~ 16(FRI)<br/><span class="location">@ National Cars Industry of Korea, Car Center and more</span></p>
</section>
<section id="services" class="services d-flex flex-column align-items-center">
<h3 class="section-title text-light mt-4">Main Services</h3>
<hr class="bord"></hr>
</section>
<section class="cars d-flex flex-column align-items-center justify-content-center mt-4">
<h3 class="section-title">Our Cars</h3>
<hr class="bord"></hr>
</section>
<section class="partners d-flex flex-column align-items-center justify-content-start mt-4">
<h3 class="section-title">Partnes</h3>
<hr class="bord">
<div class="partners-logo d-flex flex-row align-items-center justify-content-start mt-4">
<img src="./assets/partners/careem.png" alt="careem" class="partner">
<img src="./assets/partners/uber.png" alt="uber" class="partner">
<img src="./assets/partners/behance.png" alt="behance" class="partner">
</div>
</section>
<footer class="d-flex flex-row align-items-center">
<h2 class="carento">Carento</h2>
<p class="credit">2022 Renting Cars Website.<br/>Some Rights Reversed.</p>
</footer>
<script type="module" src="./script.js"></script>
</body>
</html>