-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (110 loc) · 4.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Tran Minh Nghia</title>
<meta name="description" content="Tran Minh Nghia Portfolio" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<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=Alkatra:wght@400;500;700&family=Dancing+Script:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<header></header>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contacts">Contact</a></li>
</ul>
</nav>
<main>
<article id="welcome-section">
<h1>Hi! My name is Nghia</h1>
<h2>I'm a developer</h2>
</article>
<article id="projects">
<div class="projects-title">
<h1>These are some of my projects</h1>
<hr>
</div>
<a href="https://github.com/Zen341/Sorting-Visualizer" target="_blank" class="project-tile">
<img src="images/sorting-visualizer.webp" alt="">
<p>
<span><</span>
Sorting-Visualizer
<span>/></span>
</p>
</a>
<a href="https://github.com/Zen341/DemoWebcamApp_Python" target="_blank" class="project-tile">
<img src="images/demowebcamapp_python.png" alt="">
<p>
<span><</span>
DemoWebcamApp_Python
<span>/></span>
</p>
</a>
<a href="https://github.com/Zen341/My-Portfolio" target="_blank" class="project-tile">
<img src="images/Screenshot 2023-04-09 232408.png" alt="">
<p>
<span><</span>
My Portfolio
<span>/></span>
</p>
</a>
<a href="https://github.com/MasterPi-2124/CNWeb30-Backend" target="_blank" class="project-tile">
<img src="images/Web capture_17-9-2023_15122_localhost.jpeg" alt="">
<p>
<span><</span>
Quiz Backend
<span>/></span>
</p>
</a>
</article>
<article id="contacts">
<div class="contacts-header">
<h1>Let's work together</h1>
<h2>Shoot me a message!</h2>
</div>
<div class="contacts-container">
<a href="https://www.facebook.com/profile.php?id=100023897422910" target="_blank">
<i class="fa fa-facebook-square"></i> Facebook
</a>
<a href="https://github.com/nghiatm341" target="_blank" id="profile-link">
<i class="fa fa-github"></i> Github
</a>
<a href="https://github.com/Zen341" target="_blank" id="profile-link">
<i class="fa fa-github"></i> Personal Github
</a>
<a href="mailto:[email protected]">
<i class="fa fa-envelope"></i> Send me a mail
</a>
<a href="tel:+84971690590">
<i class="fa fa-mobile-phone"></i> Call me
</a>
</div>
<hr>
</article>
</main>
<footer>
<p>Last update: 17/09/2023</p>
</footer>
<!-- <script src="" async defer></script> -->
</body>
</html>