-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (68 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DPT's first website</title>
<link rel="stylesheet" type="text/css" href="/styles/style.css" />
</head>
<body>
<h1>DPT say hello world!</h1>
<p>
My name is Dinh Phuong Thao, which is fully written in vietnamese as Đinh
Phương Thảo. <br />
</p>
<p class="inherit-test">You can call me Dinh Thao for shoft.</p>
<!-- List of link practicing different href types -->
<ol>
<li>
<a
href="pages/number-guess.html"
target="_blank
"
>Project Đoán số</a
>
</li>
<li>
<a
href="pages/pig-game.html"
target="_blank
"
>Project Gieo xúc xắc (Pig Game)</a
>
</li>
<li>Dùng "#": <a href="#">Về đầu trang</a></li>
<li>
<a href="pages/blogs.html" target="_blank">Blogs</a>
</li>
<li>
Relative path: <a href="pages/contact.html" target="_blank">Contact</a>
</li>
<li>
<!-- Link to an Email Address -->
<a href="mailto:[email protected]" target="_blank"
>Send me email</a
>
</li>
<li>
<!-- Button as a Link -->
<button onclick='document.location="pages/blogs.html"'>
HTML Tutorial
</button>
</li>
<li>
Link Titles:
<a
href="https://thaodinh.github.io/my-cv/"
title="Visit my CV"
target="_blank"
>Visit My CV</a
>
</li>
</ol>
<!-- CSS text -->
<p id="text-cap-transform">test small cap</p>
<p id="text-cap-variant">test small cap</p>
</body>
</html>