-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestimoni.html
79 lines (72 loc) · 2.5 KB
/
testimoni.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
<!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="./foto/logo.jpg">
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="product.css">
<link rel="stylesheet" href="contact_us.css">
<link rel="stylesheet" href="testimoni.css">
<title>MISSCRIP</title>
</head>
<body>
<div class="page-wrapper">
<div class="nav-wrapper">
<div class="grad-bar"></div>
<nav class="navbar">
<img src="./foto/logo.jpg" alt="Company Logo">
<h1>MISSCRIP</h1>
<div class="menu-toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav no-search">
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="product.html">Product</a></li>
<li class="nav-item"><a href="testimoni.html">Testimoni</a></li>
<li class="nav-item"><a href="contact_us.html">Contact Us</a></li>
</ul>
</nav>
</div>
<section class="headline">
<div class="hero">
<h1>Testimoni Product</h1>
<p>Beberapa testimoni customers tentang produk MISSCRIP</p>
</div>
</section>
<div class="title">
<h2 class="sub_title">Testimoni</h2>
<div class="line_small"></div>
<div class="line_big"></div>
<div class="line_small"></div>
<br>
</div>
<div class="container_testimoni">
<img src="./foto/testimoni.png" alt="testimoni">
</div>
</div>
<!-- footer -->
<footer>
<div class="center_items">
<p>Copyright 2022 © By <span>MISSCRIP</span></p>
<br>
</div>
</footer>
<!-- batas akhir footer -->
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$("#search-icon").click(function() {
$(".nav").toggleClass("search");
$(".nav").toggleClass("no-search");
$(".search-input").toggleClass("search-active");
});
$('.menu-toggle').click(function(){
$(".nav").toggleClass("mobile-nav");
$(this).toggleClass("is-active");
});
</script>
</html>