- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
136 lines (123 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
136 lines (123 loc) · 4.42 KB
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>
<htmllang="en">
<head>
<metacharset="UTF-8" />
<metaname="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 -->
<linkrel="stylesheet" href="/assets/css/styles.css" />
</head>
<body>
<!-- container -->
<divclass="main__container">
<!-- home -->
<mainclass="home">
<!-- profile -->
<sectionclass="home__profile">
<imgsrc="/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 -->
<sectionclass="home__skill">
<h2>skills</h2>
<ulclass="home__list" id="skill"></ul>
</section>
<!-- about me -->
<sectionclass="home__about">
<h2>about me</h2>
<ulclass="home__list">
<li>
<divclass="home__label">military service</div>
<divclass="home__value">1402/08/01 => 1404/05/07</div>
</li>
<li>
<divclass="home__label">city<span>-</span>region</div>
<divclass="home__value">
<ahref="https://goo.gl/maps/zAuRFgF7CABsPMHa7" target="_blank">tehran - andisheh</a>
</div>
</li>
<li>
<divclass="home__label">date of birth</div>
<divclass="home__value">1378-07-13 || 1999-10-05</div>
</li>
<li>
<divclass="home__label">education</div>
<divclass="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 -->
<asideclass="sidebar">
<sectionclass="sidebar__social">
<h2class="social__header">social</h2>
<navclass="social__list">
<ul>
<li>
<ahref="https://github.com/devshashtag" target="_blank">
<iclass="fa-brands fa-github-alt"></i>
<span>github</span>
</a>
</li>
<li>
<ahref="https://t.me/devshashtag" target="_blank">
<iclass="fa fa-paper-plane" aria-hidden="true"></i>
<span>telegram</span>
</a>
</li>
</ul>
</nav>
</section>
<!-- social -->
<sectionclass="sidebar__contact">
<h2class="contact__header">contact</h2>
<navclass="contact__list">
<ul>
<li>
<ahref="mailto:devshashtag@gmail.com?subject=devshashtag+resume">
<iclass="fa fa-envelope" aria-hidden="true"></i>
<span>devshashtag@gmail.com</span>
</a>
</li>
<li>
<ahref="tel:09914928321">
<iclass="fa fa-phone" aria-hidden="true"></i>
<span>09914928321</span>
</a>
</li>
</ul>
</nav>
</section>
<!-- resources -->
<sectionclass="sidebar__resources">
<h2class="about__header">resources</h2>
<navclass="about__list">
<ul>
<h3>frontend</h3>
<li><atarget="_blank" href="https://developer.mozilla.org/en-US/">MDN</a></li>
<li><atarget="_blank" href="https://javascript.info/">javascript.info</a></li>
<li><atarget="_blank" href="https://www.w3schools.com/">W3schools</a></li>
</ul>
</nav>
</section>
</aside>
</div>
<!-- scrips -->
<scripttype="module" src="/assets/js/script.js"></script>
<scripttype="module" src="/assets/js/home.js"></script>
</body>
</html>