-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (81 loc) · 3.36 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!Doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Caitlin Wheeless Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Inter&display=swap" rel="stylesheet">
<link href="css_caitlin.css" type="text/css" rel="stylesheet">
<link href="css_home.css" type="text/css" rel="stylesheet" >
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
</head>
<body>
<header><div class="hometitle">Caitlin Wheeless</div>
<div class="jobtitle">Technical Writer</div>
</header>
<nav>
<div class="navwrap">
<div><a href="resume.html">CV</a></div>
<div class="dd-link"><span class="dd-arrow">Portfolio</span>
<div id="cw-drop" class="dd-p">
<div>
<ul>
<li><a href="basic.html">Basic User</a></li>
<li><a href="advanced.html">Advanced User</a></li>
<li><a href="restructure.html">Content Structures</a></li>
<li><a href="visual.html">Visual Aids</a></li>
<li><a href="misc.html">Miscellaneous</a></li>
</ul>
</div>
</div>
</div>
<div><a href="about.html">About</a></div>
</div>
</nav>
<main>
<article>
<div class="homewrap">
<div>
<div>
<a class="card-b teal draw" href="basic.html"><span class="card-t">Basic User</span></a>
</div>
</div>
<div>
<div>
<a class="card-b teal draw" href="advanced.html"><span class="card-t">Advanced User</span></a>
</div>
</div>
<div>
<div>
<a class="card-b teal draw" href="restructure.html"><span class="card-t">Content Structures</span></a>
</div>
</div>
<div>
<div>
<a class="card-b teal draw" href="visual.html"><span class="card-t">Visual Aids</span></a>
</div>
</div>
<div>
<div>
<a class="card-b teal draw" href="misc.html"><span class="card-t">Miscellaneous</span></a>
</div>
</div>
<div>
<div>
<a class="card-b teal draw" href="resume.html"><span class="card-t">CV</span></a>
</div>
</div>
</div>
<div class="about-wrap">
<div class="about-content">
<div class="about-title im">ABOUT THIS SITE</div>
<div class="im">
<p>As you might have already noticed, I am not a designer or an FE dev.</p>
<p>This site is just a handful of HTML files and some CSS that I wrote manually. No JavaScript or builders. I used <a target="_blank" href="https://pdfobject.com/">PDFObject</a> to display and style embedded PDFs.</p>
</div>
</div>
</div>
</article>
</main>
</body>
</html>