-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
30 lines (28 loc) · 1.11 KB
/
header.php
File metadata and controls
30 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codey4k</title>
<?php wp_head() ?>
</head>
<body>
<div class="fab">
<div class="fab__back"></div>
<div class="fab__button"></div>
</div>
<div class="wrap">
<!-- Menu bar-->
<div class="menu" id="menu">
<div class="menu__container">
<a href="<?php echo home_url('/'); ?>">
<img src="<?php echo get_stylesheet_directory_uri()?>/images/y4k.png" alt="logo y4k" class="menu__logo" />
</a>
<div class="menu__icon"></div>
<ul class="menu__nav">
<li class="menu__item">Home</li>
<li class="menu__item">Articles</li>
<li class="menu__item">Contact</li>
<ul>
</div>
</div>