-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (99 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Amir Aryan's Portfolio</title>
<link
href="https://fonts.googleapis.com/css2?family=Vazirmatn:[email protected]&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/f01250f2a2.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" type="text/css" href="styles/globals.css" />
<link rel="stylesheet" type="text/css" href="styles/english.css" />
<script src="./javascript/multilanguage.js"></script>
</head>
<body>
<header>
<div class="container flex-row-between">
<nav class="flex-row-8">
<a data-i18n="about" href="#about"></a>
<a data-i18n="Projects" href="#projects"></a>
<a data-i18n="Contact" href="#contact"></a>
</nav>
<div class="dropdown language-dropdown">
<i class="fa-solid fa-globe"></i>
<div class="dropdown-content">
<a href="index.html" onclick="changeLanguage('en')">English</a>
<a href="index.html" onclick="changeLanguage('fa')">فارسی</a>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<section class="about-section" id="about">
<img
src="./assets/image/profile.jpg"
alt="amir aryan's profile image"
width="200"
height="200"
class="about-profile"
/>
<h2 data-i18n="about-me"></h2>
<p class="about-paragraph" data-i18n="about-content"></p>
<h2 data-i18n="my-journey"></h2>
<p class="journey-paragraph" data-i18n="journey-content"></p>
</section>
<section class="projects" id="projects">
<h2 data-i18n="Projects"></h2>
<ul id="projects-list"></ul>
</section>
<section class="contact" id="contact">
<h2 data-i18n="Contact"></h2>
<address>
<!-- Phone Icon -->
<a
target="_blank"
href="tel:+989051856633"
class="fas fa-phone phone-icon"
title="Call me"
></a>
<!-- Email Icon -->
<a
target="_blank"
href="mailto:[email protected]"
class="fas fa-envelope mail-icon"
title="Email me"
></a>
<!-- GitHub Icon -->
<a
target="_blank"
href="https://github.com/amiraryan1996/"
class="fab fa-github github-icon"
title="Visit my GitHub"
></a>
<!-- LinkedIn Icon -->
<a
target="_blank"
href="https://www.linkedin.com/in/amiraryan1996/"
class="fab fa-linkedin linkedin-icon"
title="Visit my LinkedIn"
></a>
<!-- Resume Download Icon -->
<a
target="_blank"
href="https://drive.google.com/file/d/1mBBEsowatl9n1PVJ8ZAqB2nFYI-HRRy3/view?usp=drive_link"
download="oct1_Amir_Aryan_Resume.pdf"
class="fa-solid fa-download resume-icon"
title="Download my resume"
></a>
</address>
</section>
</div>
</main>
</body>
</html>