-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.16 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ming Xuan's Website</title>
<link rel="stylesheet" type ="text/css" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">Ming Xuan's website</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="travels.html">Travelled</a></li>
<li><a href="gamereview.html">Game Review</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<section id="home" class="home-section">
<div class="content-card">
<img src="images/singapore.png" alt="SingaporeFlag" class="singaporeflag">
<h1>Welcome to my page!</h1>
<br>
<p>Hello! I'm Ming Xuan and I'm an international student from Singapore!</p>
<br>
<p>Currently I'm in the final year of my Computer Science undergraduate degree, and I'm looking forward to work in front-end web development once I graduate! Another field I'm also interested to specialise in the future is Data science and Machine Learning.</p>
</div>
</section>
</body>
</html>