-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
236 lines (207 loc) · 10.5 KB
/
Copy pathindex.html
File metadata and controls
236 lines (207 loc) · 10.5 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html>
<html lang="en">
<head>
<title>Austin's Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- bootstrap CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"></script>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/31149d48b0.js" crossorigin="anonymous"></script>
<!-- linking css file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- navbar -->
<!-- https://getbootstrap.com/docs/5.2/components/navbar/ -->
<!-- Add class of bg-light to nav element -->
<nav class="navbar navbar-expand-lg bg-light fixed-top navbarScroll">
<div class="container">
<a class="navbar-brand" href="#">Austin Dailey</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Banner -->
<section class="container-fluid section bgimage" id="home">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 hero-text">
<h2 class="hero_title">Hi, I'm Austin</h2>
<p class="hero_desc">I am a 3rd year Computer Engineering student at Cal Poly looking to further my education in a professional setting</p>
</div>
</div>
</section>
<!-- About section -->
<section class="container mt-4 pt-4 section" id="about">
<h1 class="text-center">About Me</h1>
<div class="row mt-4">
<div class="col-lg-6">
<img src="images/hammock.jpg" class="image_about" alt="">
</div>
<div class="col-lg-6">
<p>I am a student at Cal Poly who loves the outdoors! I am originally from San Marcos, CA where my parents, brother, and two dogs live. I also happen to be very passionate about cars. I recently had the opportunity to volunteer at Sothebys Auction in Monterey, CA which was an incredible experience. My free time is mostly spent:
</p>
<div class="row-mt-3">
<div class="col-md-6">
<ul>
<li>Mountain Biking</li>
<li>Snowboarding</li>
<li>Playing pickleball</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Climbing</li>
<li>Hiking</li>
<li>Watching comedy movies</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Projects section -->
<section class="section" id="portfolio">
<div class="container mt-3">
<h1 class="text-center">Projects</h1>
<div class="row">
<div class="col-lg mt-4">
<div class="card">
<img class="card-img-top" src="images/fpga-overview.jpg" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Flappy Bird FPGA</h4>
<p class="card-text">Used Assembly, Verilog, and System Verilog languages to make a playable game</p>
<div class="text-center">
<a href="fpga-project.html" class="btn btn-success">See it in action</a>
</div>
</div>
</div>
</div>
<div class="col-lg mt-4">
<div class="card">
<img class="card-img-top" src="images/virtual-world-overview.png" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Object Based Virtual World</h4>
<p class="card-text">Created a interactive virtual world in Java</p>
<div class="text-center">
<a href="#" class="btn btn-success">Link</a>
</div>
</div>
</div>
</div>
<div class="col-lg mt-4">
<div class="card">
<img class="card-img-top" src="images/portfolioImage3.jpeg" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Product Landing Page</h4>
<p class="card-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<div class="text-center">
<a href="#" class="btn btn-success">Link</a>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-lg mt-4">
<div class="card">
<img class="card-img-top" src="images/portfolioImage4.jpeg" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Messaging Service</h4>
<p class="card-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<div class="text-center">
<a href="#" class="btn btn-success">Link</a>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-4 mt-4">
<div class="card">
<img class="card-img-top" src="images/portfolioImage1.jpeg" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Twitter Clone</h4>
<p class="card-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<div class="text-center">
<a href="#" class="btn btn-success">Link</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mt-4">
<div class="card">
<img class="card-img-top" src="images/portfolioImage4.jpeg" alt="Card image" style="width:100%">
<div class="card-body">
<h4 class="card-title">Blog App</h4>
<p class="card-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<div class="text-center">
<a href="#" class="btn btn-success">Link</a>
</div>
</div>
</div>
</div> -->
</div>
</section>
<!-- Contact Section -->
<section class="container mt-3 section" id="contact">
<h1 class="text-center">Contact Me</h1>
<div class="row mt-4">
<div class="col-lg-6">
<!-- to edit google map go to https://www.embed-map.com type your location, generate html code and copy the html -->
<div style="max-width:100%;overflow:hidden;color:red;width:500px;height:500px;">
<div id="embedmap-canvas" style="height:100%; width:100%;max-width:100%;">
<iframe style="height:100%;width:100%;border:0;" frameborder="0" src="https://www.google.com/maps/embed/v1/place?q=San+Luis+Obispo&key=AIzaSyBFw0Qbyq9zTFTd-tUY6dZWTgaQzuU17R8">
</iframe>
</div>
<a class="googlemaps-html" href="https://www.embed-map.com" id="get-data-forembedmap">https://www.embed-map.com</a>
<style>#embedmap-canvas img{max-width:none!important;background:none!important;font-size: inherit;font-weight:inherit;}
</style>
</div>
</div>
<div class="col-lg-6">
<!-- form fields -->
<form>
<input type="text" class="form-control form-control-lg" placeholder="Name">
<input type="email" class="form-control mt-3" placeholder="Email">
<input type="text" class="form-control mt-3" placeholder="Subject">
<div class="mb-3 mt-3">
<textarea class="form-control" rows="5" id="comment" name="text" placeholder="Project Details"></textarea>
</div>
</form>
<button type="button" class="btn btn-success mt-3">Contact Me</button>
</div>
</div>
</section>
<!-- footer section-->
<footer class="container-fluid footer" id="footer">
<!-- social media icons -->
<div class="social-icons mt-4">
<a href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.twitch.tv/" target="_blank"><i class="fab fa-twitch"></i></a>
</div>
</footer>
<!-- load javascript after loading all html content -->
<script src="script/script.js"></script>
</body>
</html>