-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
52 lines (45 loc) · 1.33 KB
/
header.php
File metadata and controls
52 lines (45 loc) · 1.33 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head(); ?>
<title>DBWP.pro</title>
</head>
<body>
<header>
<div class="header-nav">
<div id="menu-icon-shape">
<div id="menu-icon">
<div id="top"></div>
<div id="middle"></div>
<div id="bottom"></div>
</div>
</div>
<div class="logo">
<a href="/" class="logo-link">
<p class="logo-text">]}</span></p>
</a>
</div>
</div>
<!-- Overlay menu -->
<div id="overlay-nav">
<div id="nav-content">
<ul>
<li><a href="#"> About</a></li>
<li><a href="/blog"> Blog</a></li>
<li><a href="#"> Contact</a></li>
</ul>
<div id="mk-fullscreen-search-wrapper" style="padding-top: 30px; height: 100%">
<form method="get" id="searchform" action="">
<input type="text" value="" placeholder="Search..." id="search-input">
<span id="clear"><i class="fa-regular fa-trash-can"></i></span>
</form>
<div id="results-container">
</div>
</div>
</div>
</div>
</header>
</body>
</html>