-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (80 loc) · 3.23 KB
/
Copy pathindex.html
File metadata and controls
92 lines (80 loc) · 3.23 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coangsang's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="nav-container">
<a href="#" class="logo">CS<span>.</span></a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<h1>Hi, I'm <span class="highlight">Quang Sang</span></h1>
<p>Software Engineer</p>
<a href="#projects" class="btn">View My Work</a>
</div>
</header>
<main class="container">
<section id="about" class="section">
<h2 class="section-title">About Me</h2>
<p>
I'm a student at VNUHCM - University of Science.
</p>
</section>
<section id="skills" class="section">
<h2 class="section-title">Technical Skills</h2>
<div class="skills-grid">
<div class="skill-tag">C# / Unity</div>
<div class="skill-tag">Python</div>
<div class="skill-tag">C++</div>
<div class="skill-tag">JavaScript / Extensions</div>
</div>
</section>
<section id="projects" class="section">
<h2 class="section-title">Featured Projects</h2>
<div class="project-grid">
<div class="project-card">
<div class="project-info">
<h3>Inventory Rampager</h3>
<p>A specialized tool currently in release, designed to manage and optimize complex item systems.</p>
<div class="tags">
<span>C#</span>
<span>Game Tool</span>
</div>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>HCMUS GPA Calculator</h3>
<p>A Chrome extension helping students at HCMUS calculate their cumulative GPA instantly from the student portal.</p>
<div class="tags">
<span>JavaScript</span>
<span>Web Extension</span>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="section contact">
<h2 class="section-title">Get In Touch</h2>
<p>I'm always open to discussing new projects or creative opportunities.</p>
<a href="coangsang19@gmail.com" class="email-link">coangsang19@gmail.com</a>
</section>
</main>
<footer>
<p>© 2026 Coangsang. Made with ☕.</p>
</footer>
</body>
</html>