-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (98 loc) · 4.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jason</title>
<meta name="description" content="foreza's site">
<meta name="author" content="foreza">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/65119b7dac.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js" integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div class="navbar-fixed">
<nav>
<div class="grey darken-3 nav-wrapper row">
<a href="#" data-target="mobile-menu" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="center hide-on-med-and-down">
<li class="col s3"><a class="active" href="#about">Home</a></li>
<li class="col s3 disabled"><a href="https://github.com/foreza">Github</a></li>
<li class="col s3 disabled"><a href="https://medium.com/@foreza">Blog</a></li>
<li class="col s3"><a target="_blank" href="resume.html">Resume</a></li>
</ul>
</div>
</nav>
</div>
<ul class="sidenav" id="mobile-menu">
<li class=""><a class="active" href="#about">Home</a></li>
<li class="disabled"><a href="https://github.com/foreza">Github</a></li>
<li class="disabled"><a href="https://medium.com/@foreza">Blog</a></li>
<li class=""><a target="_blank" href="resume.html">Resume</a></li>
</ul>
<header>
<div id="background-banner">
<div id="bg-banner-top">
<p class="slide-intro-from-left" id="bannerIntro"> Hi, I'm Jason.</p>
</div>
<div id="bg-banner-profile">
<img alt="jason" id="profile-pic" class="circle" src="asset/profile.png">
</div>
<div id="bg-banner-content">
</div>
</div>
</header>
<main>
<div class="row">
<div id="about" class="col s12">
<div class="flex-container row">
<div class="col s12 m12 l4">
<div class="card-panel">
<h4>Personal: </h4>
<p><b>Undo-er</b> @ <a href="#">Home</a></p>
<p>Reverse engineering things.</p>
<p>Probably breaking them.</p>
<h4>Work: </h4>
<p><b>Product/Solutions</b> @ <a href="https://www.liveramp.com/">LiveRamp</a></p>
<p>Figure out mobile identity.</p>
<p>Technical architecture.</p>
</div>
</div>
<div class="col s12 m12 l4">
<div class="card-panel">
<h4>What I do: </h4>
<p>Experiment and play with things.</p>
<p>Translate between tech and user.</p>
<p>Eat ridiculous amounts of bread.</p>
<p>Remind you to take care of your eyes!</p>
</div>
</div>
<div class="col s12 m12 l4">
<div class="card-panel">
<h4>Connect? </h4>
<p>I'd love to see you click on my links.</p>
<p><i class="fab fa-linkedin"></i><a href="https://www.linkedin.com/in/jasonthechiu/">
LinkedIn: jasonthechiu</a></p>
<p><i class="fab fa-github"></i><a href="https://github.com/foreza"> Github: foreza</a></p>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer">
<div class="footer-copyright">
<div class="container">
<span>© 2024 jasonthechiu</span>
</div>
</div>
</footer>
</body>
</html>