-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (168 loc) · 4.53 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=UTF-8>
<meta name=viewport content=width=device-width, initial-scale=1.0>
<title>Mohammad Rostami</title>
<link rel=stylesheet href=assets/css/style.css>
<link rel="shortcut icon" href="favicon.jpg" type="image/x-icon">
</head>
<body>
<section id="main">
<div class="circle-top"></div>
<nav>
<i id="burger-icon"></i>
<ul>
<li>
<a href="#main">
About
</a>
</li>
<li>
<a href="#skillsSection">Skills</a>
</li>
<li>
<a href="#projectsSection">
Projects
</a>
</li>
<li>
<a href="#contactSection">
Contact
</a>
</li>
</ul>
<a target="_blank" href="https://daramet.com/mammad" class="buy-coffee btn">
Buy me a coffee >>
</a>
</nav>
<div class="content">
<div id="mainInfo">
<div id="nameBox">
<h3>
Hello! I'm
</h3>
<h2>
Mohammad Rostami
</h2>
</div>
<p>
Backend (laravel) Developer
</p>
<div id="mainSectionBottom">
<a class="btn" download href="assets/files/resume.pdf">
Get Resume! >>
</a>
<div id="socialsBox">
<a href="https://linkedin.com/in/mohammadrostamiorg" class="social">
<i class="linkedin"></i>
</a>
<a href="https://t.me/mmdrsdev" class="social">
<i class="telegram"></i>
</a>
<a href="https://github.com/mohammadrostamiorg" class="social">
<i class="github"></i>
</a>
</div>
</div>
</div>
<div id="pic">
<img src="assets/images/portrait-hero.webp">
</div>
</div>
</section>
<section id="skillsSection">
<h1>
skills
</h1>
<div id="skills">
<div class="skill">
PHP
</div>
<div class="skill">
Laravel
</div>
<div class="skill">
JavaScript
</div>
<div class="skill">
HTML
</div>
<div class="skill">
CSS
</div>
<div class="skill">
Tailwind
</div>
</div>
<h1>
Languages
</h1>
<div id="langs">
<div class="lang">
English
</div>
<div class="lang">
Persian
</div>
</div>
</section>
<section id="projectsSection">
<h1>
Projects
</h1>
<div id="projectsSlider">
<div class="project">
<h3>
Password Manager
</h3>
<br>
<p class="project_desc">
A password manager web app <br>
using HTML CSS And pure js
</p>
<a href="https://mohammadrostamiorg.github.io/password-manager/" class="btn btn-open-project">Open</a>
</div>
<div class="project">
<h3>
Dns changer
</h3>
<br>
<p class="project_desc">
Dnsch is ArchLinux cli tool to change system dns on google or shecan
<br>
using bash
</p>
<a href="https://github.com/mohammadrostamiorg/dnsChanger" class="btn btn-open-project">Open</a>
</div>
<div class="project">
<h3>
Got world
</h3>
<br>
<p class="project_desc">
A project about Game of Thrones an ice and fire world <br>
The development of this project is currently stopped
</p>
<a href="http://Gotworld.ir" class="btn btn-open-project">Open</a>
</div>
</div>
</section>
<section id="contactSection">
<div id="contactBox">
<h2>
How to find me
</h2>
<div class="row">
<span class="label">
Email :
</span>
<span class="value">
</span>
</div>
</div>
</section>
<script src=assets/js/script.js></script>
</body>
</html>