-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (92 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- local stylesheet -->
<link href="./css/primary.css" rel="stylesheet" />
<link href="./css/stars.css" rel="stylesheet" />
<script src="./js/stars.js"></script>
<!--bootstrap stylesheet-->
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" />
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- metadata -->
<title>My Webpage</title>
<meta name="viewport" content="initial-scale=1, width=device-width" />
<meta name="description" content="A personal hobby website first made for a class" />
<meta charset="UTF-8" />
<link rel="icon" href="assets/favicon.jpg" />
</head>
<body>
<div class="container-fluid">
<!--center all content with left+right padding-->
<div class="row pt-5">
<div class="col-10 mx-auto">
<!--top part with icon and about me-->
<div class="row row-cols-1 row-cols-sm-2 align-items-center">
<div class="col justify-content-end z-3 position-relative overflow-visible">
<p class="display-1 name_display bg-left overflow-visible">Rowan Foxx</p>
<hr class="align-items-end border border-light border-2 rounded" />
<p class="h2 name_subheader pb-1">Tech Enthusiast, Robotics Engineer, and Satisfactory Nerd.</p>
</div>
<div class="col position-relative z-0">
<img src="./assets/icon.gif" class="img-thumbnail img-fluid h-25 float-left rounded bg-right" />
</div>
</div>
<!--about me + projects-->
<div class="row align-items-center pt-5">
<div col-10>
<div class="card-group border-center">
<!--card 1-->
<div class="card card-transparent">
<div class="card-body">
<h3 class="card-title mx-auto pb-1">About Me</h3>
<p class="card-text">Heyo! I'm Rowan, an aspiring programmer and robotics engineer. I use <a class="text-danger text-bold">They/Them</a> pronouns. Check out <a href="https://firstinspires.org">FIRST Robotics</a>!</p>
</div>
</div>
<!--card 2-->
<div class="card card-transparent">
<div class="card-body">
<h3 class="card-title mx-auto pb-1">Interests</h3>
<p class="card-text"><i class="bi bi-dot"></i>Robotics</p>
<p class="card-text"><i class="bi bi-dot"></i>Video Games (Satisfactory, Hades, Rain World)</p>
<p class="card-text"><i class="bi bi-dot"></i>FPV Drones</p>
<p class="card-text"><i class="bi bi-dot"></i>Mountain Biking</p>
</div>
</div>
<!--card 3-->
<div class="card card-transparent">
<div class="card-body">
<h3 class="card-title mx-auto pb-1">My Links</h3>
<div class="btn-group-vertical">
<a type="button" class="btn btn-outline-light" href="https://github.com/GearBoxFox">
<i class="bi bi-github"></i>
GearBoxFox
</a>
<a type="button" class="btn btn-outline-light" href="https://open.spotify.com/user/31umtf43f7t75bwyg6kgcrh25oaq">
<i class="bi bi-spotify"></i>
RowanFoxx
</a>
<a type="button" class="btn btn-outline-light" href="https://steamcommunity.com/profiles/76561198882183162/">
<i class="bi bi-steam"></i>
GearboxF0x
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--license for star-->
<div class="row pt-5">
<div class="col-auto mx-auto">
<a href="https://codepen.io/ethancopping/pen/mdaxdEj" class="mx-auto link-light link-opacity-100">Star Background Effect</a>
</div>
</div>
</div>
</body>
</html>