forked from cadars/john-doe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (52 loc) · 2.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="darkreader-lock">
<title>david.qa</title>
<meta name="description" content="Curated answers to tech questions written by me, David.">
<link rel="icon" type="image/x-icon" href="img/profile.png" id="favicon">
<!-- Recommended minimum -->
<meta property="og:title" content="david.qa">
<meta property="og:description" content="Curated answers to tech questions written by me, David.">
<meta property="og:image" content="img/site-image.jpg">
<meta name="twitter:card" content="summary_large_image">
<!-- You could also inline the stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<!-- <h1>
<a href="#home">david.qa</a>
</h1> -->
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#questions">Questions</a>
</nav>
</header>
<main>
<section id="about"> <!-- ABOUT -->
<h2>About</h2>
<p>Hi, I'm David. I'm a digital marketing professional and content creator.</p>
<p>If you'd like to learn more about me, check out <a href="https://davidvkimball.com/about" target="_blank">this page</a>.</p>
</section>
<section id="questions"> <!-- QUESTIONS -->
<h2>Where can I watch your videos?</h2>
<p>You can subscribe to my <a href="https://youtube.com/davidvkimball" target="_blank">main YouTube channel</a> or my <a href="https://youtube.com/davidvbonus" target="_blank">second channel</a>.</p>
<h2>Where can I read your writing?</h2>
<p>Check out the posts on my <a href="https://davidvkimball.com" target="_blank">blog</a>.</p>
<h2>What's the easiest way to connect with you?</h2>
<p>Either your <a href="https://davidvkimball.com/social" target="_blank">social platform of choice</a> or by filling out <a href="https://davidvkimball.com/contact" target="_blank">this form</a>.</p>
<h2>What software do you recommend for everyday use?</h2>
<p>Covered in this <a href="https://davidvkimball.com/posts/my-software-of-choice-with-links/" target="_blank">blog post</a>.</p>
</section>
<section id="home"> <!-- HOME -->
<h2>David V. Kimball</h2>
<p>Marketing professional and content creator.</p>
<p><img src="img/profile.png" width="150px"></p>
</section>
</main>
</body>
</html>