-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (61 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
73 lines (61 loc) · 3.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link rel="stylesheet" href="style.css">
<title>DriveMark</title>
</head>
<body class="bg-black">
<!-- NavBar Start -->
<nav class="bg-black fixed w-full z-20 top-0 start-0 border-b-1 border-gray-700">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-1">
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="./images/car logo.png" class="h-15" alt="Car Logo" />
<span class="self-center text-xl text-white font-semibold whitespace-nowrap">DriveMark</span>
</a>
<button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-body rounded-base md:hidden hover:bg-neutral-secondary-soft hover:text-heading focus:outline-none focus:ring-2 focus:ring-neutral-tertiary" aria-controls="navbar-default" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="white" stroke-linecap="round" stroke-width="2" d="M5 7h14M5 12h14M5 17h14"/></svg>
</button>
<div class="hidden w-full md:block md:w-auto" id="navbar-default">
<ul class="font-medium flex flex-col p-4 md:p-0 mt-4 border border-default rounded-base bg-neutral-secondary-soft md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 md:bg-neutral-primary">
<li>
<a href="#" class="block py-2 px-3 text-yellow-400 bg-brand rounded md:bg-transparent md:text-fg-brand md:p-0" aria-current="page">Home</a>
</li>
<li>
<a href="#" class="block py-2 px-3 text-white rounded hover:bg-neutral-tertiary md:hover:bg-transparent md:border-0 md:hover:text-fg-brand md:p-0 md:dark:hover:bg-transparent">About</a>
</li>
<li>
<a href="#" class="block py-2 px-3 text-white rounded hover:bg-neutral-tertiary md:hover:bg-transparent md:border-0 md:hover:text-fg-brand md:p-0 md:dark:hover:bg-transparent">Services</a>
</li>
<li>
<a href="#" class="block py-2 px-3 text-white rounded hover:bg-neutral-tertiary md:hover:bg-transparent md:border-0 md:hover:text-fg-brand md:p-0 md:dark:hover:bg-transparent">Pricing</a>
</li>
<li>
<a href="#" class="block py-2 px-3 text-white rounded hover:bg-neutral-tertiary md:hover:bg-transparent md:border-0 md:hover:text-fg-brand md:p-0 md:dark:hover:bg-transparent">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- NavBar End -->
<!-- Hero start -->
<br><br>
<section class="text-white body-font">
<div class="container mx-auto flex px-5 py-24 items-center justify-center flex-col">
<div class="text-center lg:w-2/3 w-full">
<h1 class="title-font sm:text-5xl text-4xl mb-4 font-medium text-white">Choose the best car</h1>
<h2 class="title">Porsche 911-Y</h2>
<p class="mb-8 leading-relaxed text-gray-400">⚡ Electric Car · Future of Performance</p>
<div class="flex justify-center">
</div>
</div>
<img class="lg:w-2/6 md:w-3/6 w-5/6 mb-10 object-cover object-center rounded drop-shadow-[0_20px_50px_rgba(252,63,49,0.35)] pic" alt="hero" src="./images/front car.png">
</div>
</section>
<!-- Hero end -->
<script src="https://cdn.jsdelivr.net/npm/flowbite@4.0.1/dist/flowbite.min.js"></script>
</body>
</html>