-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (116 loc) · 3.94 KB
/
index.html
File metadata and controls
128 lines (116 loc) · 3.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Index</title>
<meta name="description" content="Jee's Project Portfolio Website" />
<meta name="author" content="Jee Kim" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</head>
<body>
<script src="..\javascript\scripts.js" type="text/javascript"></script>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">
<img src="\images\Headshot.png" alt="Logo" style="width: 45px;" />
</a>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="HTML\Subpages\ProjectIndex.html"
>Projects</a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="HTML\Subpages\Blog.html">Blog</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="HTML\Subpages\AboutMe.html">About Me</a>
</li>
</ul>
</nav>
<!-- Hello -->
<!-- Beginning the Page -->
<div class="container my-3 mx-auto">
<article>
<div class="row">
<div class="col-12">
<img src="./images/BryceCanyon2.JPG" alt="test" class="img-responsive" style="max-width: 100%; height: auto;">
<div class="carousel-caption">
<h1 class="text-center">Welcome!</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-6 text-center">
<img
src="images\Headshot.png"
alt="Headshot of Jee's Face"
class="w-50 img-fluid"
/>
</div>
<div class="col-6">
<p class="text-left p-5 my-5">
I'm a senior at UC Irvine and will graduate in June 2021.
I am actively pursuing job and internships oppurtunities.
Please check out my personal projects, resume, and/or schedule through the navbar.
</p>
</div>
</div>
<div class="row text-center my-3">
<div class="col-3">
<a href="https://github.com/KimJee">
<img
src="images\GitHub icon.svg"
alt="Github Link"
class="w-25"
/>
</a>
</div>
<div class=" col-3">
<a href="https://www.linkedin.com/in/KimJee1/">
<img
src="images\LinkedIn icon.svg"
alt="LinkedIn Link"
class="w-25"
/>
</a>
</div>
<div class=" col-3 ">
<a href="images\Resume.pdf">
<img
src="images\ResumeIcon.svg"
alt="Link to Resume"
class="w-25"
/>
</a>
</div>
<div class=" col-3">
<a href="mailto:jeehoon.jk75@gmail.com">
<img src="images\Gmail icon.svg" alt="Gmail Link" class="w-25" />
</a>
</div>
</div>
<div class="row p-3">
<div class="embed-responsive embed-responsive-16by9 col-12">
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23A79B8E&ctz=America%2FLos_Angeles&src=dnVtaTlqNWxoajViYnE5OWg5Z3M1NGVtMjBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%23a2a2a2&showDate=1&mode=WEEK&title=Jees-Calendar&showCalendars=1" style="border:solid 1px #777" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</article>
</div>
<footer>
<div class="my-3 container-fluid bg-dark text-light mx-auto">
This content is made by Jee Kim. All rights reserved.
</div>
</footer>
</body>
</html>