-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
66 lines (64 loc) · 2.63 KB
/
about.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Me</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="bg-rich-black text-white text-center py-5">
<h1>Your Name</h1>
<p>Game Developer | Programmer</p>
<nav>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html"
>About Me</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<main class="container mt-5">
<section id="about" class="text-center">
<h2>About Me</h2>
<p>
I am a passionate game developer with experience in various
programming languages and game engines. My skills include:
</p>
<ul class="list-unstyled">
<li>Proficient in C#, C++, and Python</li>
<li>Experience with Unity and Unreal Engine</li>
<li>Strong understanding of game design principles</li>
<li>
Ability to work collaboratively in a team environment
</li>
<li>Problem-solving and critical thinking skills</li>
</ul>
<h3>Experience</h3>
<p>I have worked on several projects, including:</p>
<ul class="list-unstyled">
<li>Game Title 1 - Role: Lead Developer</li>
<li>Game Title 2 - Role: Programmer</li>
<li>Game Title 3 - Role: Game Designer</li>
</ul>
</section>
</main>
<footer class="bg-rich-black text-white text-center py-3">
<p>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>