-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
72 lines (69 loc) · 3.12 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
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
<!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" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Merriweather+Sans:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>Arad Afzali - About me</title>
<link rel="icon" href="./pictures/logo.png">
</head>
<body>
<header>
<div class="HeaderContainer">
<nav>
<ul>
<li>
<a href="index.html"><span>Home</span></a>
</li>
<li>
<a class="active" href="aboutme.html"><span>About me</span></a>
</li>
<li>
<a href="skills.html"><span>My skills</span></a>
</li>
<li>
<a href="contact.html"><span>Contact me</span></a>
</li>
<li>
<a href="resume.html"><span>Resume</span></a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<div class="MainContainer">
<div class="Cols">
<div class="ColTitle">
<h1>
About <br />
me
</h1>
</div>
<div class="ColRight">
<div class="ColText">
<p style="padding-bottom: 7px; text-align: justify;">
My name is Arad Afzali. I graduated from Sharif University of Technology with a degree in Computer Engineering.
</p>
<p style="padding-bottom: 7px; text-align: justify;">
I have a strong interest in technology development, especially in cybersecurity. I enjoy challenging myself with programming and discovering solutions to complex problems. I started learning programming on my own and later took several online and offline coding courses, which I found extremely beneficial.
<br>
I’m particularly interested in how technology impacts our lives and the world around us. My primary focus is on cybersecurity, but I also enjoy learning about related topics like cloud computing, computer networks, AI, IoT, edge computing, HCI, and operating systems. These areas are constantly evolving and present exciting opportunities for innovation and collaboration. I like figuring out how they work, how they can be improved, and how they can be used to address real-world challenges.
<br>
In my spare time, I enjoy various hobbies. I love photography, playing sports like running and swimming, socializing with friends, and spending time on video games and watching movies. These activities keep me entertained and show me how tech and fun can go hand in hand.
</p>
<p>BTW, make sure you check out my resume!</p>
</div>
</div>
</div>
</div>
</main>
</body>
</html>