This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (73 loc) · 3.45 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
<!DOCTYPE html>
<html>
<!--
Author: Ang Yak Hng
Date: 23 May 2019
filename: index.html
-->
<head>
<title>Ang Yak Hng</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='shortcut icon' href="Images/favicon.png">
<link href="CSS/layout.css" rel='stylesheet'>
<link href='CSS/style.css' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<!--Header-->
<div class='header'>
<a href='index.html' class='logo'>Home</a>
<div class='header-links'>
<a href='projects.html' id='projects'>Projects</a>
<a href="education.html" id='education'>Education</a>
<a href='interests.html' id='interests'>Interests</a>
</div>
</div>
<!--Top splash screen-->
<div class='splash-screen'>
<h1>< is ></h1>
<p>Less is more.</p>
</div>
<!--about me-->
<div class='about'>
<img src='Images/me.jpg' alt='portrait of me'/>
<div class='self-info'>
<h3>All about me</h3>
<p>Hi. I am 17 this year, and I am studying for the Diploma of Infocomm Technology, or DIT, in Singapore Polytechnic at this moment. This very website you're seeing is a project as part of a course module I am taking, which is Front-End web Development, or FED. </p>
<br/>
<h4>Why Polytechnic?</h4>
<p>I chose to go to polytechnic because I much prefer the hands-on project work compared to studying a textbook. There is absolutely nothing wrong about picking up a textbook and studying like that, but I have found that after 4 years in SST, I'd much prefer learning through observation then application. </p>
</div>
</div>
<!--about my family-->
<div class='about-family'>
<h2>My Family</h2>
<div class='mom'>
<img src="Images/mom.jpg" alt='portrait of my mom' >
<h3>Mum</h3>
<p>Age: 43</p>
</div>
<div class='dad'>
<img src="Images/dad.jpg" alt='portrait of my dad'>
<h3>Dad</h3>
<p>Age: 48</p>
</div>
<div class='sis'>
<img src="Images/sis.jpg" alt='portrait of my sister' >
<h3>Sister</h3>
<p>Age: 14</p>
</div>
</div>
<!-- Footer -->
<footer>
<div class='social-media'>
<button onclick="window.open('https://twitter.com/yakisoap_bar','_blank')" id='twitter'><i class="fab fa-twitter"></i></button>
<button onclick="window.open('https://www.instagram.com/yakhnggg/','_blank')" id='instagram'><i class="fab fa-instagram"></i></button>
<button onclick="window.open('https://www.reddit.com/user/ayyyyyh', '_blank')" id='reddit'><i class="fab fa-reddit"></i></button>
</div>
<p>©Ang Yak Hng - 2019</p>
</footer>
</body>
</html>