-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 4.54 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css">
<!-- Actor font -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Actor" />
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap" rel="stylesheet">
<title>About | Paul Riker</title>
</head>
<body>
<div class="wrapper">
<img class="logo img-fluid mx-auto d-block" src="paul-logo.png" alt="Logo showing Paul Riker's name"/>
<nav class="navbar navbar-expand-md navbar-light">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon float-right"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav nav-fill w-100">
<li class="nav-item active">
<a class="nav-link" href="index.html" title="About Paul">About <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="works.html" title="Works and Awards">Works</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="cv.html" title="Curriculum Vitae">CV</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="contact.html" title="Contact Paul">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="container container-fluid">
<div class="row">
<div class="col-md-12 bio">
<img class="bio img-fluid float-xs-left mr-3 rounded" src="paul.jpg" title="A photo of Paul Riker sitting next to a statue and laughing as if in conversation.">
<p><span class="font-weight-bold">Paul Riker</span> is a writer from Ann Arbor, Michigan. His work has been featured in <em>Salt Hill</em>, <em>CutBank</em>, the <em>Nashville Review</em>, <em>SmokeLong Quarterly</em>, <em>Pithead Chapel</em>, <em>Crack the Spine</em>, <em>Drunk Monkeys</em>, and <em>Five on the Fifth</em>.</p>
<p>He was awarded the National Society of Arts and Letters' Holl Merit and Jones Merit Award — its top prize in literature for the state of Indiana — and the <em>SmokeLong Quarterly</em> Comedy Prize. He was also a finalist for the <em>Iowa Review</em> Award in Fiction, the Montana Prize in Fiction, and <em>Pithead Chapel</em>'s Larry Brown Short Story Award.</p>
<p>In addition, he is the recipient of multiple Purdue Literary Awards, including the Booth Tarkington Fiction Award for a Short Story by a Graduate Student, the CLA Dean's Award for Best Graduate Entry, and the Budd and Betty Knoll Award for Best of Contest.</p>
<p>Paul received his Master of Fine Arts in Creative Writing from Purdue University. He lives in Charlotte, North Carolina, and is currently at work on a novel.</p>
</div>
</div>
</div>
</div>
<!-- JavaScript for use with Bootstrap -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<footer>
<div class="container container-fluid text-center"><p>Made with <span class="hvr-pulse">♥</span> <span class="sr-only">love</span> by <a href="https://www.github.com/carriehwillis" target="_blank" title="Carrie Willis on GitHub">Carrie</a></p></div>
</footer>
</body>
</html>