-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (123 loc) · 4.15 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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" />
<!-- Redirects to another page -->
<meta http-equiv="Refresh" content="0; url=https://github.com/JeliHacker" />
<!-- <link rel="stylesheet" href="main.css"> -->
<link rel="icon" type="image/x-icon" href="Goochfavicon.ico">
<link rel="apple-touch-icon" type="image/x-icon" href="Goochapple-touch-icon.png">
<title>Eli Gooch</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
/* Some custom styles to beautify this example */
.row {
margin-top: 1rem;
/* background: #dbdfe5; */
}
.col {
padding: 10px 15px;
/* background: #abb1b8; */
/* border: 1px solid rgba(0, 0, 0, 0.5) */
}
</style>
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light py-3">
<div class="container">
<a class="navbar-brand" href="https://www.eligooch.com/">
<b><u>Eli Gooch</b></u>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navmenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item nav-link">
<a href="now.html" class="nav-link">What I'm Doing Now</a>
</li>
<li class="nav-item nav-link">
<a href="https://jelihacker.github.io" class="nav-link">Projects</a>
</li>
<li class="nav-item nav-link">
<a href="books.html" class="nav-link">Books</a>
</li>
<li class="nav-item nav-link">
<a href="src/images/EliGoochResume2022.pdf" target="_blank" class="nav-link">Resume</a>
</li>
<li class="nav-item nav-link">
<a href="#contact" class="nav-link">Contact Me</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero -->
<section class="bg-auto text-auto p-5 p-lg-0 pt-lg-5 text-center text-sm-start">
<div class="container">
<div class="d-sm-flex align-items-center justify-content-between">
<img class="img-fluid w-25 d-none d-sm-block" style="height: 10%" src="src/images/self-portrait-1.jpeg" alt="">
<div>
<h1>Hi, I'm <span class="text-primary">Eli Gooch</span></h1>
<p class="lead my-4">
I'm a senior at Centre College in Danville, Kentucky.
</p>
</div>
</div>
</div>
</section>
<br>
<section>
<div class="container">
<h1>About Me</h1>
<p>
Skills include Python, React Native, Bootstrap.
</p>
</div>
</section>
<section>
<div class="container">
<h1>Resume</h1>
<a href="src/images/EliGoochResume2022.pdf">View My Resume</a>
</div>
</section>
<section>
<div class="container">
<h1>Projects</h1>
<div class="row">
<div class="col">
<a href="https://jelihacker.github.io/TheGameOfLife/index.html">The Game of Life</a>
</div>
<div class="col">
<a href="">Project 2</a>
</div>
<div class="col">
<a href="">Project 3</a>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="p-5">
<div class="container">
<h1>Contact Me</h1>
<p>LinkedIn</p>
</div>
</section>
<footer>
<div class="container">
<div class="d-flex aligns-items-center justify-content-center">
<a href="https://github.com/JeliHacker/Personal_Website" target="_blank" class="">Developed by Eli
Gooch.</a>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>