-
Notifications
You must be signed in to change notification settings - Fork 1
/
car_animation.html
37 lines (36 loc) · 1.52 KB
/
car_animation.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
<!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>Ford Car</title>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="car_animation.css">
</head>
<body>
<nav class="navbar navbar-dark fw-bold">
<a href="" class="navbar-brand">LOGO</a>
<ul class="navbar-nav d-flex flex-row gap-5">
<li class="nav-item"><a href="" class="nav-link">Home</a></li>
<li class="nav-item"><a href="" class="nav-link">About</a></li>
<li class="nav-item"><a href="" class="nav-link">Contact</a></li>
</ul>
</nav>
<div class="row">
<div class="col-5 content text-light d-flex flex-column justify-content-center ps-5">
<h1>FORD</h1>
<h2>Brand New <span class="text-warning">"Muscle Car"</span></h2>
<h3>Building Futuristic Dream Cars</h3>
<div class="text-light">
<button class="btn btn-dark bg-black">Get Started</button>
<button class="btn btn-dark bg-black">Take a ride</button>
</div>
</div>
<div class="col-5 image d-flex flex-column justify-content-center">
<img src="car.gif" alt="">
</div>
</div>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>