-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
48 lines (43 loc) · 1.74 KB
/
header.php
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
<!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">
<title>Thomas Sinclair, Electrical Engineer</title>
<!-- STYLESHEET -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<!-- FONT -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Roboto:wght@100;300;700;900&display=swap" rel="stylesheet">
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<header>
<!-- <nav>
<ul>
<li><a>Home</a></li>
<li><a>About</a></li>
<li><a>Projects</a></li>
<li><a>Contact</a></li>
<li><a href="javascript:void(0);" class="nav-icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a></li>
</ul>
</nav>
<!-- NAV with WP pages -->
<!-- <nav>
<?php wp_nav_menu(
array(
'theme_location' => 'header-menu',
'container' => 'ul',
'items_wrap' => '<li>'
)
); ?>
<a href="javascript:void(0);" class="nav-icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</nav> -->