-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.52 KB
/
index.html
File metadata and controls
58 lines (53 loc) · 1.52 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
<!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" />
<!--
meta og style script
-->
<meta name="author" content="Thomas Sankara" />
<meta name="keywords" content="web developer, web design, freelance" />
<meta name="description" content="Web developer for hire" />
<meta name="theme-color" content="#ffffff" />
<!-- Open Graph -->
<meta property="og:title" content="Thomas Sankara" />
<meta property="og:description" content="A description of your article" />
<meta property="og:url" content="https://tsbsankara.netlify.app" />
<meta
property="og:image"
content="https://tsbsankara.netlify.app/profile.png"
/>
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<!--
<style></style> - internal styling
inline styling
external styling
framework
-->
<link rel="stylesheet" href="index.css" />
<title>Thomas Sankara</title>
</head>
<body>
<header class="header">
<div>
<h2>Sankara</h2>
</div>
<nav class="navbar">
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
<div class="menu-button">
<div></div>
<div></div>
<div></div>
</div>
</header>
<script src="index.js"></script>
</body>
</html>