-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css" >
<title> Hao Tuan Chau </title>
</head>
<body>
<header>
<button >Projects</button>
<button onclick="showResume()">Resume</button>
<button >Intro</button>
<img
src="headerPic.jpg"
alt="Small picture of Hao in San Francisco" />
</header>
<div class="container">
<section class="card-content" id="intro">
<img
id="HCM"
src="./HCM.jpg"
alt="Picture of Ho Chi Minh city" />
<img
id="familyPic"
src="./familyPic.jpg"
alt="Picture of Hao and family" />
<h1>Hi! This is "HOW"</h1>
<p>
My name is Hao Chau. I am from Saigon, Vietnam. It is
such a honor for me to study here in Canada (aka the "Great" White North).<br />
I am currently studying Computer Engineering at Carleton University,
and persuing to become a professional font-end developer.<br />
I am a web application enthusiast.
I am passionate about CSS, and having a lot of fun with it by trying different
naming conventions, 3D-transformations, preprocessors, and helping friends out. <br />
I am a cat person.
</p>
</section>
<section class="card-content" id="resume">
<h1>Hi! This is "HOW"</h1>
<p>
Welcom to my page. My name is Hao Chau. I am from Saigon, Vietnam. It is
such a honor for me to study here in Canada (aka the "Great" White North).
I am currently studying Computer Engineering at Carleton University,
and persuing to become a professional font-end developer.
Ideally, I would like to become a full stack developer in the future.
I am passionate about CSS, and having a lot of fun with it by trying different
naming conventions, 3D-transformations, preprocessors, and helping friends out.
</p>
</section>
</div>
</div>
<script src="https://use.fontawesome.com/9476cd96e0.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="function.js"></script>
</body>
</html>