-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
93 lines (85 loc) · 4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Dunnatello</title>
<link rel="stylesheet" href="css/site.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav class="navbar">
<div class="container navbar-content">
<a class="navbar-brand" href="index.html">
<img src="images/Dunnatello Icon.png" alt="Dunnatello" />
Dunnatello
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="Projects.html">Projects</a>
<a href="About.html">About</a>
</div>
</div>
</nav>
<div class="container">
<div class="profile-section">
<a href="https://github.com/Dunnatello">
<img src="https://avatars.githubusercontent.com/u/11823777" alt="Dunnatello" class="profile-image"></a>
<h1>Dunnatello</h1>
<p>Game Developer & Software Engineer</p>
</div>
<div class="section">
<h2 class="section-title">👋 Hello there</h2>
<p>I'm an aspiring game developer passionate about creating exceptional experiences. I specialize in Unity game development, but I might
explore Unreal Engine for future projects when the need arises.</p>
<p style="margin-top: 10px">I'm currently working on video game projects in my spare time, but I'm always open to collaborate on new game development projects!</p>
</div>
<div class="section">
<h2 class="section-title">⭐ Education & Interests</h2>
<div class="skill-list">
<div class="skill-item">🎓 Bachelor of Science (B.S.), Computer Science</div>
<div class="skill-item">🎮 Game & Simulation Development</div>
<div class="skill-item">🎨 User Interface Design</div>
<div class="skill-item">🤖 Game Artificial Intelligence</div>
</div>
</div>
<div class="section">
<h2 class="section-title">⚡ Technologies & Tools</h2>
<div class="skill-list">
<div class="skill-item">💻 C#, C++, Lua, Java, Python, SQL, PL/SQL</div>
<div class="skill-item">🌐 HTML, CSS, JavaScript, ASP.NET Core</div>
<div class="skill-item">🎮 Unity, Solar2D</div>
<div class="skill-item">📱 .NET MAUI, WPF, WinUI</div>
<div class="skill-item">☁️ Azure Cloud Hosting</div>
<div class="skill-item">🏢 Oracle Apex</div>
<div class="skill-item">📝 Technical Writing, Quality Assurance</div>
</div>
</div>
<div class="section">
<h2 class="section-title">🤝 Connect</h2>
<div class="social-buttons">
<a href="mailto:dunnatello@dunnatello.com" class="social-button email">
<span>📨 Email</span>
</a>
<a href="https://www.youtube.com/@Dunnatello" class="social-button youtube">
<img src="images/Social Media/youtube_social_icon_white.png" alt="YouTube">
<span>@Dunnatello</span>
</a>
<a href="https://www.github.com/Dunnatello" class="social-button github">
<img src="images/Social Media/github-mark-white.png" alt="GitHub">
<span>Dunnatello</span>
</a>
<a href="https://www.tiktok.com/@dunnatelloyt" class="social-button tiktok">
<img src="images/Social Media/tiktok.png" alt="TikTok">
<span>@dunnatelloyt</span>
</a>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
© 2024 - Dunnatello - <a href="About.html">About</a>
</div>
</footer>
</body>
</html>