-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (123 loc) · 4.42 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>DevsHashtag</title>
<!-- styles -->
<link rel="stylesheet" href="/assets/css/styles.css" />
</head>
<body>
<!-- container -->
<div class="main__container">
<!-- home -->
<main class="home">
<!-- profile -->
<section class="home__profile">
<img src="/assets/images/profile.webp" alt="user profile" loading="lazy" />
<p>i'm <b>mohammad ali kalhory</b>. this is where I keep all of my thoughts and links to everything I do on the internet.</p>
</section>
<!-- skill -->
<section class="home__skill">
<h2>skills</h2>
<ul class="home__list" id="skill"></ul>
</section>
<!-- about me -->
<section class="home__about">
<h2>about me</h2>
<ul class="home__list">
<li>
<div class="home__label">military service</div>
<div class="home__value">1402/08/01 => in progress</div>
</li>
<li>
<div class="home__label">city<span>-</span>region</div>
<div class="home__value">
<a href="https://goo.gl/maps/zAuRFgF7CABsPMHa7" target="_blank">tehran - andisheh</a>
</div>
</li>
<li>
<div class="home__label">date of birth</div>
<div class="home__value">1378-07-13 || 1999-10-05</div>
</li>
<li>
<div class="home__label">education</div>
<div class="home__text">
38 credits in software engineering<br />
University of shamsipour, Tehran 2020-2021<br />
<br />
AS in Information Technology<br />
University of kharazmi, Shahreza 2018-2020
</div>
</li>
</ul>
</section>
</main>
<!-- sidebar -->
<aside class="sidebar">
<section class="sidebar__social">
<h2 class="social__header">social</h2>
<nav class="social__list">
<ul>
<li>
<a href="https://github.com/devshashtag" target="_blank">
<i class="fa-brands fa-github-alt"></i>
<span>github</span>
</a>
</li>
<li>
<a href="https://t.me/devshashtag" target="_blank">
<i class="fa fa-paper-plane" aria-hidden="true"></i>
<span>telegram</span>
</a>
</li>
</ul>
</nav>
</section>
<!-- social -->
<section class="sidebar__contact">
<h2 class="contact__header">contact</h2>
<nav class="contact__list">
<ul>
<li>
<a href="mailto:[email protected]?subject=devshashtag+resume">
<i class="fa fa-envelope" aria-hidden="true"></i>
<span>[email protected]</span>
</a>
</li>
<li>
<a href="tel:09914928321">
<i class="fa fa-phone" aria-hidden="true"></i>
<span>09914928321</span>
</a>
</li>
</ul>
</nav>
</section>
<!-- resources -->
<section class="sidebar__resources">
<h2 class="about__header">resources</h2>
<nav class="about__list">
<ul>
<h3>frontend</h3>
<li><a target="_blank" href="https://developer.mozilla.org/en-US/">MDN</a></li>
<li><a target="_blank" href="https://javascript.info/">javascript.info</a></li>
<li><a target="_blank" href="https://www.w3schools.com/">W3schools</a></li>
</ul>
</nav>
</section>
</aside>
</div>
<!-- scrips -->
<script type="module" src="/assets/js/script.js"></script>
<script type="module" src="/assets/js/home.js"></script>
</body>
</html>