-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
144 lines (127 loc) · 2.89 KB
/
Contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Me - Ali Rohanizadeh</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Style the body */
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
/* Style the header */
.header {
padding: 20px;
text-align: center;
background: #1abc9c;
color: white;
}
/* Style the navigation bar */
.navbar {
display: flex;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Style the main content */
.main {
padding: 20px;
}
/* Style the contact section */
.contact {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 20px;
align-items: center;
}
/* Style the contact items */
.contact .item {
display: flex;
align-items: center;
}
/* Style the icons */
.contact .icon {
font-size: 24px;
color: #333;
margin-right: 10px;
}
/* Style the texts */
.contact .text {
font-size: 18px;
color: #333;
}
/* Style the links */
.contact .link {
text-decoration: none;
color: #1abc9c;
}
/* Style the footer */
.footer {
padding: 10px;
text-align: center;
background: #ddd;
}
/* Responsive layout - when the screen is less than 600px wide, make the contact section stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.contact {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="header">
<h1>Ali Rohanizadeh</h1>
<p>Electronic Engineer with 15+ years of experience in embedded systems and software</p>
</div>
<div class="navbar">
<a href="index.html">Home</a>
<a href="Projects.html">Projects</a>
<a href="Contact.html">Contact</a>
</div>
<div class="main">
<h2>Contact Me</h2>
<p>If you have any questions, feedback, or inquiries, please feel free to contact me using any of the following methods:</p>
<div class="contact">
<div class="item">
<i class="icon fas fa-phone"></i>
<div class="text">Mobile: +989125024925</div>
</div>
<div class="item">
<i class="icon fas fa-phone"></i>
<div class="text">Tel: +982144236724</div>
</div>
<div class="item">
<i class="icon fab fa-whatsapp"></i>
<div class="text">WhatsApp: +989125024925</div>
</div>
<div class="item">
<i class="icon fas fa-envelope"></i>
<div class="text">Email: <a class="link" href="mailto:[email protected]">[email protected]</a></div>
</div>
<div class="item">
<i class="icon fas fa-globe"></i>
<div class="text">Website: <a class="link" href="https://www.khaterelec.ir">www.khaterelec.ir</a></div>
</div>
<div class="item">
<i class="icon fab fa-linkedin"></i>
<div class="text">Linkedin: <a class="link" href="https://www.linkedin.com/in/ali-rohanizadeh">ali-rohanizadeh</a></div>
</div>
</div>
</div>
<div class="footer">
<p>© 2024 Ali Rohanizadeh. All rights reserved.</p>
</div>
</body>
</html>