-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (91 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="widht=device-width, initial-scale=1">
<title>Website</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<!-- loader -->
<div class="bg-loader">
<div class="loader"></div>
</div>
<!-- header -->
<div class="medsos">
<div class="container">
<ul>
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
<header>
<div class="container">
<h1><a href="index.html">WEBSITEKU</a></h1>
<ul>
<li class="active"><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="service.html">SERVICE</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</header>
<!-- banner -->
<section class="banner">
<h2>WELCOME TO MY WEBSITE</h2>
</section>
<!-- about -->
<section class="about">
<div class="container">
<h3>ABOUT</h3>
<p>Lorem ipsum dolor sit amet, <b>consectetur adipisicing elit</b>, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. <i>Ut enim ad minim veniam</i>,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</section>
<!-- service -->
<section class="service">
<div class="container">
<h3>SERVICE</h3>
<div class="box">
<div class="col-4">
<div class="icon"><i class="fas fa-mobile"></i></div>
<h4>MOBILE APP</h4>
</div>
<div class="col-4">
<div class="icon"><i class="fas fa-edit"></i></div>
<h4>DESIGN</h4>
</div>
<div class="col-4">
<div class="icon"><i class="fas fa-globe"></i></div>
<h4>WEB DEVELOMENT</h4>
</div>
<div class="col-4">
<div class="icon"><i class="fas fa-chart-bar"></i></div>
<h4>DIGITAL MAERKETING</h4>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="container">
<small>Copyright © 2021 - Ashila Satya Riyanti. All Right Reserved.</small>
</div>
</footer>
<script type="text/javascript">
$(document).ready(function(){
$(".bg-loader").hide();
})
</script>
<script src="bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>