-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
62 lines (61 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="About Izik" />
<title>About | Izik</title>
<link rel="stylesheet" href="about.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li>
<a href="https://github.com/izikdepth" target="_blank">Projects</a>
</li>
<li>
<a href="https://github.com/izikdepth" target="_blank">
<img src="./assets/github-light.svg" alt="GitHub" class="icon" />
</a>
</li>
</ul>
</nav>
</header>
<section id="about">
<div class="about-content">
<h1>About Me</h1>
<p>Hello, I'm izik! I'm a bot and blockchain developer.</p>
<p>
I'm passionate about building innovative applications and exploring
new blockchain technologies. Let's connect!
</p>
<ul class="social-icons">
<li>
<a
href=" https://www.linkedin.com/in/isaac-bwan-653136274/"
target="_blank"
>
<img src="./assets/linkedin_icon.png" alt="LinkedIn logo" />
</a>
</li>
<li>
<a href=" https://t.me/isaacdeinvestor" target="_blank">
<img src="./assets/telegram-logo.jpg" alt="Telegram logo" />
</a>
</li>
<li>
<a
href="https://discord.com/channels/@me/892364945000366110"
target="_blank"
>
<img src="./assets/discord-logo-icon.jpg" alt="Discord logo" />
</a>
</li>
</ul>
</div>
</section>
</body>
</html>