-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
63 lines (63 loc) · 2.7 KB
/
blog.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Ryan Min - Blog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Author" content="Ryan Min">
<meta name="Keywords" content="">
<meta name="Description" content="">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/blog.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="js/nav.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
</head>
<body>
<header>
<div class="container header">
<div class="titles col-sm-6 col-xs-8">
<a href="index"><h1 id="name">Ryan Min</h1></a>
<h3 id="program">1B UW CS/BBA</h3>
</div>
<div class="heading col-sm-6 col-xs-4">
<nav class="tables">
<a href="#!" id="menu-icon" onclick="display()">
<img src="img/menu-icon.png"></a>
<ul>
<li class="content"><a href="contact">Contact</a></li>
<li class="content"><a href="media">Media</a></li>
<li class="content"><a href="blog">Blog</a></li>
<li class="content"><a href="projects">Projects</a></li>
<li class="content"><a target="_blank" href="resume.pdf">Resume</a></li>
<li class="content"><a href="index">About</a></li>
</ul>
</nav>
</a>
</div>
</div>
</header>
<div class="container">
<h1 class="title">BLOG</h1>
<h3>Here, I'll be sharing some of my thoughts on the Waterloo experience,
<br>the CS industry, finance, co-op, photography, music, or anything else.
</h3>
<h2>Coming Soon!</h2>
<!--
<div class="article">
<a href="competitive-waterloo"><h2>Landing a Co-op Job</h2></a>
<h4>March 5, 2018</h4>
<p class="summary">Scared by the 500+ applicants for your dream co-op
job? Here's how to stand out.</p>
<img src="img/app-numbers.jpg"/>
<p><a href="competitive-waterloo"><i>Continue reading -></i></a></p>
</div>
<h3>More posts coming soon!</h3>
-->
</div>
</body>
</html>