-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (38 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My web</title>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="src/style/style.css">
</head>
<body>
<div style="display: flex; background-color: #293039;">
<div id="personal-holder">
<img title='I am cute "Cat"' src="src/img/avatar.jpg" width="200" height="200"/>
<button>Email me</button>
</div>
<div id="content-holder">
<div id="header-holder">
<h1>Ngan V.T. Nguyen</h1>
<h4>"Simple is perfect!"</h4>
</div>
<div class="content">
<h2 class="title">About me</h2>
<p>
I am currently a student of Physics and Computer Science at VNU-HCMUS, where I have developed strong skills in both disciplines. I have a keen interest in researching computer science, which has led me to earn a special prize in my university's Student Research Contest. Besides academics, I enjoy playing video games in my free time. My proficiency in English allows me to effectively read and listen to various resources, enhancing both my studies and personal interests.
</p>
<div style="display: flex; justify-content: space-between;">
<button>Resume</button>
<button>Projects</button>
</div>
</div>
</div>
</div>
</body>
</html>