-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (106 loc) · 5.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Isaac Fearn</title>
<script src="https://kit.fontawesome.com/a1c5fd666e.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jura:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.2/particles.min.js">
</head>
<body>
<header>
<div class="container">
<nav class="nav">
<a class="nav-link active" aria-current="page" href="index.html"><i class="fa-solid fa-house"></i></a>
<a class="nav-link" href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i></a>
<a class="nav-link" href="#projects"><i class="fa-solid fa-screwdriver-wrench"></i></a>
<a class="nav-link" href="https://www.linkedin.com/in/isaac-fearn/"><i class="fa-brands fa-linkedin"></i></a>
<a class="nav-link" href="https://github.com/redfern08/"><i class="fa-brands fa-github"></i></a>
</nav>
</div>
</header>
<main>
<div class="container" id="future-dev">
<h1><b>Hello World!</b></h1>
<p>Oregon native web developer and indie game developer</p>
</div>
<div class="container" id="about">
<img src="photos/headshot.jpg" alt="portfolio picture">
<h2><b>Who am I?</b></h2>
<p>My name is Isaac. I am a Marine veteran, indie game developer and web developer
building web sites and games primarily for fun!
</p>
<p>
My web development tool kit includes Django for more complex tasks and Flask
for smaller tasks. I am familiar with both React.js and Vue.js.
</p>
<p>
For my game development, I currently use Godot for both 2D and 3D games and
plan to expand to other engines as well but Godot does wonders!
</p>
</div>
<div class="container" id="tech">
<div class="container" id="stack">
<i class="fa-brands fa-python" id="python-icon"></i>
<i class="fa-brands fa-square-js" id="js-icon"></i>
<i class="fa-brands fa-html5" id="html-icon"></i>
<i class="fa-brands fa-css3-alt" id="css-icon"></i>
<i class="fa-brands fa-vuejs" id="vue-icon"></i>
<i class="fa-brands fa-bootstrap" id="bs-icon"></i>
</div>
</div>
<h2 class="container" id="projects-title"><b>Web and App Projects</b></h2>
<div class="container" id="projects">
<div class="card">
<img src="photos/encryption.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Rot 13 Cypher</h5>
<p class="card-text">
A simple cipher that replaces a letter with the 13th letter
after it in the alphabet.
</p>
<a href="https://github.com/redfern08/redfern08/blob/main/Isaac_PDXCodeGuild_Projects/Python/rot_13.py" class="btn btn-dark">Source Code</a>
</div>
</div>
<div class="card">
<img src="photos/fhaz_8_20_22.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Curiosity Images</h5>
<p class="card-text">
A web app that allows the user to view images from the Curiosity rover. Users
can select a date and camera to view from.
</p>
<a href="https://isaacfearn.com/curiosityphotos/" class="btn btn-dark">Curiosity Images</a>
</div>
</div>
<div class="card">
<img src="photos/talos_one_group.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Talos One Group</h5>
<p class="card-text">
A static web page I created for my part time training business. This website
utilizes HTML and CSS only.
</p>
<a href="https://talosonegroup.netlify.app/" class="btn btn-dark">Website</a>
</div>
</div>
</div>
<h2 class="container" id="projects-title"><b>Video Games</b></h2>
<div class="container" id="game-projects">
<p><b>Coming soon!</b></p>
</div>
</main>
<footer class="container">
<p>©Isaac Fearn Copyright 2022</p>
</footer>
</body>
</html>