-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
58 lines (40 loc) · 1.43 KB
/
blog.html
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>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BZQWJ07CQL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BZQWJ07CQL');
</script>
<title>Rob McCarthy - Interaction Designer</title>
<link href="./style.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/f2082d0580.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
</head>
<body>
<a name="top"></a>
<!-- header -->
<div id="header">
<!-- logo -->
<div id="header-container">
<a class="logo" href="./index.html">Rob McCarthy</a>
<!-- main navigation -->
<a class="linkone" href="./blog.html">Blog</a>
<a class="linktwo" href="./index.html">Home</a>
</div>
</div>
<!-- body -->
<div class="profile-text">
<h1 class="blog">Blog</h1>
</div>
<div class="profile-text">
<p class="profile"><a class="profilesecond" href="./setup-to-fail.html">Setup to <s>succeed</s> fail</a><br>23 November 2023</p>
</div>
<div class="arrow-icon"><a class="arrow-icon-hover" href="#top"><img src="back-to-top.svg"></a></div>
</body>
</html>