-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 2.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="This is the personal developer site of Michael O'Toole, a full-stack developer from Liverpool, UK">
<title>micoto.dev - Welcome</title>
<!-- fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap">
</noscript>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- social media -->
<meta property="og:title" content="micoto.dev">
<meta property="og:type" content="website">
<meta property="og:description" content="This is the personal developer site of Michael O'Toole, a full-stack developer from Liverpool, UK">
<meta property="og:image" content="https://micoto.dev/images/welcome.jpg">
<meta property="og:url" content="https://micoto.dev">
<meta name="twitter:card" content="summary_large_image">
<style>
.alternate-color {
background-color: #efe5ff;
padding: 0 10px;
border-radius: 3px;
font-weight: normal;
}
</style>
</head>
<body class="bg-gray-500">
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-5 fw-bold">micoto <div class="d-inline alternate-color mr-2">.dev</div></h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">This is the personal developer site of Michael O'Toole, <br />a full-stack developer from Liverpool, UK.</p>
<p class="text-muted">I am currently busy with projects, but I'll add some developer-focused articles soon!</p>
</div>
</div>
</body>
</html>