-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
114 lines (112 loc) · 4.88 KB
/
test.html
File metadata and controls
114 lines (112 loc) · 4.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js" async></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="nav">
<a href="index.html">Home</a>
<a href="#projectsSec">Projects</a>
<a href="#about">About</a>
</div>
</nav>
</header>
<main id="main">
<div id="hero">
<h1>Hey! <span>: )</span> <br> I'm Jerome. </h1>
<div id="buttons">
<a id="projects" href="#projectsSec">Projects</a>
<a id="me" href="#about">Me</a>
</div>
<div class="move">
</div>
</div>
</main>
<div id="about">
<diV id="aboutLeft">
<div id="descrip">
<p class="descripCaption">JEROME CHO</p>
<h1 class="descripTitle">A Little About Me.</h1>
</div>
<img id="face" src="/pics/you.jpg">
<p id="faceCaption">Passionate | Creative | Innovative</p>
</diV>
<div id="aboutRight">
<p>I'm a high school student currently located in the
Metro Vancouver. As someone filled with curiousity
and wonder, I love asking questions and solving
perplexing and beautiful problems. Whether playing
around with Unity's Raycasting through building
<a href="http://bit.ly/367XEsg" style="color: cyan;">Iguana Hunter</a>
, a FPS survival game, or seamlessly integrating a
beautiful UI with equally beautiful code through
<a href="http://bit.ly/2OMY0hJ" style="color: yellow;">Etch-A-Sketch</a>
, I thrive in intersections of art and technology. <br><br>
When not typing lines of code into Visual Studio
, you can find me analyzing shoujo anime with
Nietzsche's philosophy, drinking out
of a big, ugly nalgene, or writing Japanese
<a href="https://imgur.com/a/oRPiE6z" style="color: violet">kanji</a>. <br><br>
Got an opportunity, question, or need romantic
advice? <br><br>
<a href="http://bit.ly/2ZlpkFV" style="font-weight: 700; color:blueviolet">Let's Chat!</a><br><br>
Check out some of my cool projects below!</p>
</div>
</div>
<div id="projectsSec">
<div id="projectDesc">
<p class="descripCaption">PORTFOLIO</p>
<h1 class="descripTitle">Cool Projects That Blow Your Mind.</h1>
</div>
<div id="projectShowcase">
<div class="projectItem" id="website">
<a href="http://bit.ly/3qQcv2G" class="popUp">
<p>K2 Website</p>
</a>
</div>
<div class="projectItem" id="etchASketch">
<a href="http://bit.ly/2OMY0hJ" class="popUp">
<p>Etch-A-Sketch</p>
</a>
</div>
<div class="projectItem" id="rockPaper">
<a href="http://bit.ly/3tZijbM" class="popUp">
<p>Rock Paper Scissors</p>
</a>
</div>
<div class="projectItem" id="unity">
<a href="http://bit.ly/367XEsg" class="popUp">
<p>Unity Game Dev</p>
</a>
</div>
</div>
</div>
<div id="contact">
<div id="contactDesc">
<p class="descripCaption">CONTACT</p>
<h1 class="descripTitle">Let's talk.</h1>
</div>
<div id="contactInfo">
<p>If you're nearby, feel free to send me an e-mail. <br><br>
I'll get you tea! <br><br>
Any questions? Comments? <br><br>
<a href="https://bit.ly/2ZlpkFV" style="color: yellow;">Let's chat.</a>
</p>
</div>
</div>
<footer>
<hr>
<p>Lovingly crafted by Jerome Cho ❤ <br>©Miyami Kuro 2021</p>
</footer>
</body>
</html>
<!--Nav bar highlighted depending on section of page-->