-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
30 lines (30 loc) · 1.6 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./img/chatbot-logo.ico" type="image/x-icon">
<link rel="stylesheet" href="./styles/main.css">
<script defer src="./scripts/main.js"></script>
<title>chatBOT About Me</title>
</head>
<body>
<nav class="navbar">
<button type="button" class="nav-button" onclick="window.location.href='./index.html'">Home</button>
<button type="button" class="nav-button" onclick="window.location.href='./chatbox.html'">Chatbox</button>
<button type="button" class="nav-button" onclick="window.location.href='./readme.html'">Readme</button>
<button type="button" class="nav-button" onclick="window.location.href='./aboutme.html'">About Me</button>
</nav>
<main class="about-container">
<h1>About Me</h1>
<img class="profile-picture" src="./img/profile-picture.jpg" alt="Profile Picture">
<section class="personal-details">
<h2>Charles Sanders</h2>
<p>Software Developer</p>
<a href="https://www.github.com/visionthex/"><img src="https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white" alt="Github"></a>
<a href="https://twitter.com/virelus"><img src="https://img.shields.io/badge/X-%23000000.svg?style=for-the-badge&logo=X&logoColor=white" alt="X"></a>
<a href="https://www.linkedin.com/in/charles-w-sanders/"><img src="https://img.shields.io/badge/linkedin-%230077B5.svg?style=for-the-badge&logo=linkedin&logoColor=white" alt="linkedin"></a>
</section>
</main>
</body>
</html>