-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Basic template • Pico.css</title>
<meta
name="description"
content="A basic custom template for Pico using only CSS custom properties (variables). Built with Pico CSS."
/>
<link rel="shortcut icon" href="https://picocss.com/favicon.ico" />
<link rel="canonical" href="https://picocss.com/examples/basic-template/" />
<!-- Pico.css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" />
<!-- Custom template-->
<link rel="stylesheet" href="css/custom.css" />
</head>
<body>
<!-- Header -->
<header class="container">
<hgroup>
<h2>John V. Petersen</h2>
<h6>[email protected]</h6>
<h6></h6><img src="/linkedin.png" /> / <img src="/github-mark.svg" width="40" />  :   @johnvpetersen</h6>
<blockquote style="background-image: url(/background.png);">
"Have nothing in your houses that you do not know to be useful or beautiful."
<footer>
<cite>- William Morris - 1880</cite>
</footer>
</blockquote>
</hgroup>
</header>
</main>
</body>
</html>