-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Articles | Jessica Felts</title>
<link rel="stylesheet" href="../main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header id="articles-header">
<div class="header-inner">
<div class="header-title">
<h1><strong>Jessica Felts</strong><span class="inline-divider">/</span>Articles</h1>
</div>
<div class="header-links">
<ul>
<li>
<a href="https://thejessicafelts.github.io/" title="Portfolio Homepage">
<i class="fa fa-arrow-circle-left"></i>
</a>
</li>
<li>
<a href="https://github.com/thejessicafelts/" target="_blank" title="GitHub Profile">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
</header>
<main id="article-index">
<div class="main-inner">
<h1 class="title"><strong>All Articles</strong></h1>
<p class="byline">Written by <strong><a href="https://thejessicafelts.github.io/articles/" title="Articles Homepage">Jessica Felts</a></strong>.</p>
<ul>
<li>
<a href="navigating-the-complex-terrain-of-web-accessibility/">Navigating the Complex Terrain of Web Accessibility</a>
</li>
<li>
<a href="the-future-of-ui-engineering/">The Future of UI Engineering</a>
</li>
</ul>
</div>
</main>
<footer id="articles-footer">
<div class="footer-inner">
<p class="notice">Written with <span class="heart">♥</span> by <a href="thejessicafelts.github.io" target="_blank">thejessicafelts</a>.</p>
</div>
</footer>
</body>
</html>