-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (96 loc) · 4.03 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!Doctype HTML>
<html lang="english">
<head>
<title>Josh Ruud | Developer | Photographer</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Open+Sans" rel="stylesheet">
</head>
<body>
<div>
<!-- Main header navigation -->
<div class="header">
<div class="logo-wrapper">
<a class="logo" href="index.html" id="logo">
<p>J.R.</p>
</a>
<div id="mobile-nav-button">
<img src="images/arrow-down.png" id="arrow-down">
<img src="images/arrow-up.png" id="arrow-up">
</div>
<div id="main-nav-wrapper">
<ul class="flex-wrapper" id="main-nav-items">
<a href="index.html"><li>Home</li></a>
<a href="photography.html"><li>Photography</li></a>
<a href="development.html"><li>Web Development</li></a>
</ul>
</div>
</div>
<div id="mobile-nav-wrapper">
<ul class="flex-wrapper-column" id="mobile-nav-items">
<a href="index.html"><li>Home</li></a>
<a href="photography.html"><li>Photography</li></a>
<a href="development.html"><li>Web Development</li></a>
</ul>
</div>
</div>
</div>
<!-- Profile -->
<div id="introduction">
<div class="container-fluid">
<div class="row">
<div class="col-md-4 pl-5 pr-5" id="motto">
<h1>Make <br> It<br> Look<br> Good.</h1>
</div>
<div class="col-md-4" id="mobile-motto">
<h1>Make It Look Good.</h1>
</div>
<div class="col-md-8" id="profile">
<img id="avatar" src="images/avatar-2.jpg">
<p>Hola! I'm Josh Ruud, a web developer, designer, and photographer living in Louisville KY. Whatever project I'm working on, my goal is not simply to produce a functional end product; I want to make it look good.</p>
</div>
</div>
</div>
</div>
<!-- Skills (Links to respective pages) -->
<div id="skills">
<div class="container-fluid">
<div class="row">
<a class="col-12 col-md-6 container content-square" id="development" href='development.html'>
<h2>Web Development</h2>
</a>
<a class="col-12 col-md-6 container content-square" id="photography" href='photography.html'>
<h2>Photography</h2>
</a>
</div>
</div>
</div>
<div class="flex-wrapper-column footer">
<h3>Contact</h3>
<div class="flex-wrapper footer-links">
<a href="https://github.com/jruud" target="_blank"><div>
<img src="images/github-white.png">
</div></a>
<a href="https://www.linkedin.com/in/josh-ruud-8b4b3865/" target="_blank"><div>
<img src="images/linkedin-white.png">
</div></a>
<a href="http://twitter.com/joshruud" target="_blank"><div>
<img src="images/twitter-white.png">
</div></a>
</div>
</div>
<!-- To the top Button -->
<button onclick="topFunction()" id="myBtn" title="Go to top">▲</button>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="mobile-nav.js"></script>
<script src="styles.js"></script>
<script src="scroll-button.js"></script>
</body>
</html>