-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (104 loc) · 4.74 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Welcome to Zohir's personal website. Here you can learn more about me, my projects, and how to get in touch."
/>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Zohir</title>
</head>
<body>
<header class="website-header">
<div class="container">
<span class="logo">Zohir</span>
<span class="theme">
<i data-theme="light" class="icon fas fa-sun"></i>
<i data-theme="dark" class="active icon fas fa-moon"></i>
</span>
</div>
</header>
<section class="app">
<div class="container">
<section class="card left">
<div class="image">
<img src="assets/zohir.png" alt="developer image">
</div>
<h1 class="name">Zohir</h1>
<span class="title">Web developer</span>
<div class="info">
<a href="https://x.com/zohir_e" class="x-twitter-link link">
<i class="x icon fab fa-x-twitter"></i>
<span class="name">X</span>
</a>
<a href="https://github.com/zel-baz" class="github-link link">
<i class="github icon fab fa-github"></i>
<span class="name">Github</span>
</a>
<p class="link">
<i class="discord icon fab fa-discord"></i>
<span class="name">xmfcp</span>
</p>
<a href="mailto:[email protected]" class="email-link link">
<i class="email icon fas fa-envelope"></i>
<span class="name">Email</span>
</a>
</div>
</section>
<section class="card content right">
<nav class="navigation">
<ul>
<li class="active">
<i class="icon fas fa-user"></i>
<span class="name">About</span>
</li>
<li>
<i class="icon fas fa-project-diagram"></i>
<span class="name">Projects</span>
</li>
<li>
<i class="icon fas fa-envelope"></i>
<span class="name">Contact</span>
</li>
</ul>
</nav>
<main class="main-content">
<header class="main-header">
<h1 class="title">About</h1>
</header>
<p class="bio">I am a web developer and software engineering student with a passion for creating dynamic and responsive web applications. I enjoy learning new technologies and continuously improving my skills to build better and more efficient solutions.</p>
<div class="techs">
<h2 class="title">Technologies</h2>
<div class="list">
<img src="assets/techs/html.png" alt="tech icon">
<img src="assets/techs/css.png" alt="tech icon">
<img src="assets/techs/js.png" alt="tech icon">
<img src="assets/techs/php.png" alt="tech icon">
<img src="assets/techs/mysql.png" alt="tech icon">
<img src="assets/techs/c.png" alt="tech icon">
<img src="assets/techs/golang.png" alt="tech icon">
<img src="assets/techs/git.png" alt="tech icon">
<img src="assets/techs/github.png" alt="tech icon">
<img src="assets/techs/figma.png" alt="tech icon">
<img src="assets/techs/vscode.png" alt="tech icon">
<img src="assets/techs/bash.png" alt="tech icon">
<img src="assets/techs/nodejs.png" alt="tech icon">
</div>
</div>
</main>
</section>
</div>
</section>
<script src="main.js"></script>
</body>
</html>