-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
84 lines (63 loc) · 2.4 KB
/
support.html
File metadata and controls
84 lines (63 loc) · 2.4 KB
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
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Support</title>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link href="https://fonts.googleapis.com/css?family=Jim+Acme&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-3.4.1.js"> </script>
<script type="text/javascript">
$(document).ready(function(){
$('.search-icon').click(function(){
$('.search').slideToggle()
})
})
</script>
</head>
<body>
<section class="main">
<section class="header">
<a href="index.html"><div id="logo">Beable<a id="logo-s">Bakes</a></div></a>
<span class="one-header">
<div class="nav"><a class="act" href="index.html"> Home</a></div>
<div class ="nav"><a href="about.html">About Us</a></div>
<div class="nav"><a href="menu.html">Menu</a></div>
<div class="nav"><a href="vlog.html">Vlog</a></div>
<div class="nav"><a href="support.html"><img src="images/help.png" alt="" style="width:10px;height:10px;">Support</a></div>
<div class="nav"><a class="search-icon"> <i class="fa fa-search" aria-hidden="true"></i></a></div>
<span class="full-width search">
<div class="search-form">
<input type="text" name="" placeholder="I'm looking for...">
<div class="close"><i class="fa fa-times" aria-hidden="true"></i></div>
<div style="clear:both"></div>
</div>
</span>
</span>
<span class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</span>
</section>
<section class="">
<div class="oops">
<div class="non">
<h1>
Opps! There's nothing here yet.
</h1>
<h4>
Kindly check back later
</h4>
</div>
</div>
</section>
<section class = "footer">Copyright©Beables Bakes n Bites 2021. All Rights Reserved</section>
</section>
<script src="js/nav.js"></script>
</body>
</html>