-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 2.15 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 2.15 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
<!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" />
<!-- Primary Meta Tags -->
<title>anyrobert | web dev</title>
<meta name="title" content="anyrobert | web dev" />
<meta name="description" content="fullstack, brazilian dev" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://anyrobert.github.io/" />
<meta property="og:title" content="anyrobert | web dev" />
<meta property="og:description" content="fullstack, brazilian dev" />
<meta
property="og:image"
content="https://anyrobert.github.io/assets/photo-bg.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://anyrobert.github.io/" />
<meta property="twitter:title" content="anyrobert | web dev" />
<meta property="twitter:description" content="fullstack, brazilian dev" />
<meta
property="twitter:image"
content="https://anyrobert.github.io/assets/photo-bg.jpg"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body data-nav="false">
<div class="articles">
<article></article>
<article></article>
</div>
<nav id="nav">
<div id="nav-links">
<a href="/" class="nav-link">
<h2 class="nav-link-label rubik-font">Home</h2>
<img src="./assets/photo-1.jpeg" alt="image" class="nav-link-image" />
</a>
<a href="/blog" class="nav-link">
<h2 class="nav-link-label rubik-font">Blog</h2>
<img src="./assets/photo-2.jpg" alt="image" class="nav-link-image" />
</a>
</div>
</nav>
<button id="nav-toggle" type="button" onclick="toggleNav()">
<i class="open fa-solid fa-bars-staggered"></i>
<i class="close fa-solid fa-times"></i>
</button>
<script src="./index.js"></script>
<script
src="https://kit.fontawesome.com/d45d3b7409.js"
crossorigin="anonymous"
></script>
</body>
</html>