-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (71 loc) · 2.87 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
<!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" />
<link rel = "icon" href ="images/logo1.png" type = "image/x-icon">
<title>Happy Work</title>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="animate.css">
<script type="text/javascript" src="main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/b17e1d038e.js" crossorigin="anonymous"></script>
</head>
<body onload="onDocumentFinish()">
<nav class="navbar" id="nav">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="images/logo1.png" alt="" width="60" height="60" />
</a>
<a class="btn btn-primary" href="aboutus.html" role="button">ABOUT US</a>
<a class="btn btn-primary" href="addmenu.html" role="button">MENU</a>
<a class="btn btn-primary" href="index.html" role="button" style="color: white; background: #C3C5F3; transform: translateY(-3px);">HOME</a>
</div>
</nav>
<div class="main">
<div class="container">
<div id="section1">
<div class="title wow fadeInUp" data-wow-duration="2s">
<img src="images/logo2.png" alt="" class="zoom">
</div>
<h3 class=" wow fadeInUp " data-wow-delay="1.2s">Yummy Food Happy Tummy</h3>
<a href="#section2"><i class="fas fa-angle-down fa-4x wow fadeInUp" data-wow-delay="1.5s"></i></a>
</div>
<div id="section2" style="padding-bottom:5% ;">
<div class="row">
<img src="/images/logo1.png" alt="" class="zoom wow fadeInUp logo1">
<div class="container ">
<h1 class="wow fadeInUp">HAPPY WORKS</h1>
<P class="wow fadeInUp" data-wow-delay=".4s">Happy Works is a company located in Indonesia. <br> We provide
goods that you can pick randomly!</P>
<h1 class="wow fadeInUp" data-wow-delay=".8s">OUR SERVICES</h1>
<div class="row">
<a href="addmenu.html">
<img src="/images/1.png" alt="" class="services zoom wow fadeInUp" data-wow-delay="1.2s">
</a>
</div>
</div>
</div>
<a href="#section1"><i class="fas fa-angle-up fa-4x wow fadeInUp" data-wow-delay="1.6s"></i></a>
</div>
</div>
</div>
<script>
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
document.getElementById("nav").style.padding = "0px";
} else {
document.getElementById("nav").style.padding = "5px";
}
}
</script>
<script src="wow.min.js"></script>
<script>
new WOW().init();
</script>
</body>
</html>