-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (85 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Assets/CSS/reset.css">
<link rel="stylesheet" href="Assets/CSS/styles.css">
<link rel="stylesheet" href="Assets/CSS/home.css">
<title>SYB Home</title>
</head>
<body>
<!--Header-->
<header>
<div class="nav-links default-header">
<a href=""><img id="logo" src="Assets\Images\SYB Pic small.png" alt="Shoot Your Bricks Logo"></a>
<a href=""><h1>Shoot Your Bricks</h1></a>
</div>
<div class="nav-links default-header">
<a href="Pages/bio.html">Bio</a>
<a href="Pages/webdev.html">Web Dev</a>
<a href="Pages/showcase.html">Showcase</a>
<a href="Pages/links.html">Links</a>
</div>
<div class="nav-links mobile-header">
<a href=""><img id="logo" src="Assets\Images\SYB Pic small.png" alt="Shoot Your Bricks Logo"></a>
<a href=""><h1>Shoot Your Bricks</h1></a>
<button id="mobile-menu-btn">=</button>
</div>
<div id="mobile-menu">
<a href="Pages/bio.html">Bio</a>
<a href="Pages/webdev.html">Web Dev</a>
<a href="Pages/showcase.html">Showcase</a>
<a href="Pages/links.html">Links</a>
</div>
</header>
<p class="title-p center">This website is under construction.</p>
<!--Main-->
<main class="wrapper">
<div class="main-div">
<p class="title-p">Why the Name?</p>
<div class="flex">
<img id="main-image" src="Assets\Images\SYB Pic big.png" alt="Shoot Your Bricks Logo">
<p id="name-paragraph">Shoot Your Bricks is the name of my LEGO YouTube channel (shooting bricks with a camera).
The YouTube channel was my first major presence on the internet,
and I still use the name to this day in other internet contexts.
</p>
<br>
<p id="name-paragraph">My real name is Luke, but sometimes I'm called by my nickname, Gunford,
which is another reference to my YouTube channel (Gunford was a character that drove a cool LEGO car and caught bad guys).
</p>
</div>
</div>
<div class="main-div">
<p class="title-p">My Interests</p>
<div class="flex">
<div class="interest-div">
<p>My biggest hobby, and most likely future career is software development. </p>
</div>
<div class="interest-div">
<p>I also have some video and audio editing experience with Davinci Resolve.</p>
</div>
<div class="interest-div">
<p>As mentioned, YouTubing is one of my hobbies. It's becoming obsolete as I don't see that it is worth the time invested, however I learned many things from it including video editing.</p>
</div>
<div class="interest-div">
<p>I still love LEGOs, and even though I don't spend much time on my YouTube channel, I still sell MOCs on my Rebrickable page. </p>
</div>
<div class="interest-div">
<p>I'm passionate about technology, especially products and start up companies that care about and focus on the user experience.</p>
</div>
</div>
</div>
<div class="main-div main-div-bottom">
<p class="title-p">Contact Me</p>
You can contact me at <a href="mailto:[email protected]">[email protected]</a>
</div>
</main>
<!--Footer-->
<footer>
<img id="logo" src="Assets\Images\SYB Pic small.png" alt="Shoot Your Bricks Logo">
<p>Shoot Your Bricks Est. 2018</p>
<p>Contact me: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>