-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.73 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
<!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>Animated_Website</title>
<link rel="stylesheet" href="style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="images/logo1.png.png" width="100">
</div>
<div class="menu">
<a href="#">Home</a>
<a href="#">Benefits</a>
<a href="#">Booking</a>
<a href="#">Login</a>
</div>
</nav>
<div class="line">
<div class="box1"></div><br>
<div class="box2"></div><br>
<div class="box3"></div>
</div>
<div class="container">
<div class="left animate__animated animate__jackInTheBox animate__delay-0.7s">
<h1 id="drinks">Drinks</h1><br>
<h1 id="fuel">Fuel Your Body, Enhance Your Life</h1>
<button id="butt">Order NoW</button>
</div>
<div class="right">
<img src="images/main.png.png" class="animate__animated animate__lightSpeedInLeft animate__delay-0.7s">
</div>
</div>
<div class="icon animate__animated animate__lightSpeedInLeft animate_delay-1s">
<img src="images/icon1.png">
<img src="images/icon2.png">
<img src="images/icon3.png">
<img src="images/icon4.png">
</div>
</header>
<script src="script.js"></script>
</body>
</html>