-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
186 lines (144 loc) · 3.94 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="ITP104 Final Project; this is the portfolio of Jenny Kim. It focuses on information about her, photos she has taken, codes she has been working on, and her resume.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jenny Kim's Portfolio | Home</title>
<link rel="stylesheet" href="main.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: transparent;
}
#firstbox:hover h2 {
font-size: 4em;
color: #FF9F1C;
}
#scroll p, .touchme p {
text-align: center;
font-size: 1em;
}
.first_info {
transition: all 1s ease-out 0.5s;
opacity: 0.0;
}
.second_info {
transition: all 1s ease-out 1.5s;
opacity: 0.0;
}
.third_info {
transition: all 1s ease-out 2.5s;
opacity: 0.0;
}
#myinfo:hover .first_info {
opacity: 1.0;
}
#myinfo:hover .second_info {
opacity: 1.0;
}
#myinfo:hover .third_info {
opacity: 1.0;
}
</style>
</head>
<body>
<div id="navbar">
<div id="home">
<ul>
<li>
<a href="index.html#homepage">Home</a>
</li>
</ul>
</div>
<div id="nav">
<ul>
<li>
<a href="index.html#main" class="active-nav">About Me</a>
</li>
<li>
<a href="photography.html" class="active-nav">Photography</a>
</li>
<li>
<a href="code.html" class="active-nav">Code</a>
</li>
<li>
<a href="resume.html" class="active-nav">Resume</a>
</li>
</ul>
</div> <!-- #nav -->
</div> <!-- #navbar -->
<nav class="navbar navbar-light">
<div class="container-fluid">
<div id=navname>Jenny Kim</div>
<button class="navbar-toggler ms-auto" type="button" data-mdb-toggle="collapse"
data-mdb-target="#navbarToggleExternalContent3" aria-controls="navbarToggleExternalContent3"
aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars">≡</i>
</button>
</div>
</nav>
<div class="collapse" id="navbarToggleExternalContent3">
<div id="makebg" class="bg-light shadow-3 p-4">
<ul>
<li>
<a href="index.html#homepage">Home</a>
</li>
<li>
<a href="index.html#main" class="active-nav">About Me</a>
</li>
<li>
<a href="photography.html" class="active-nav">Photography</a>
</li>
<li>
<a href="code.html" class="active-nav">Code</a>
</li>
<li>
<a href="resume.html" class="active-nav">Resume</a>
</li>
</ul>
</div>
</div>
<div id="homepage">
<div class="blank"></div>
<div class="typewriter">
<h2 id="welcome">Welcome!</h2>
<div class="touchme"><p>Touch Me!</p></div>
<h2 id="hello_animation">Hello, I'm Jenny Kim.</h2>
<h2 class="phone">Hello,</h2>
<h2 class="phone">I'm Jenny Kim.</h2>
</div> <!--.typewriter-->
<div class="blank"></div>
<div id="scroll">
<p>
scroll down to get to know me more!
</p>
</div>
<div class="blank"></div>
</div><!--#homepage-->
<div id="main">
<div id="firstbox">
<h2 id="aboutme" class="title">About Me</h2>
<div id="myinfo">
<div>
<img id="memoji" src="img/memoji.png" alt="Memoji">
<div class="touchme"><p>Touch Me!</p></div>
</div>
<div>
<p class="first_info">I'm Jenny Kim, a USC student</p>
<p class="first_info">majoring in Computer Science.</p>
<br>
<p class="second_info">I like playing bowling, taking photos, swimming, chatting with friends,</p>
<p class="second_info">watching movies, doodling, making random things, playing boardgames, walking around, skateboarding,</p>
<p class="second_info">... and more!</p>
<div class="blank"></div>
</div>
</div><!--myinfo-->
</div> <!--#firstbox-->
</div> <!--#main-->
<div id="footer">
<p>University of Southern California_Jenny Kim</p>
</div><!--#footer-->
<script type="text/javascript" src="mdb.min.js"></script>
</body>
</html>