-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (80 loc) · 2.69 KB
/
contact.html
File metadata and controls
83 lines (80 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Islam Abdelfattah</title>
<link rel="icon" type="image/x-icon" href="profilepic.ico">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="tNav.css">
<link rel="stylesheet" href="contact.css">
<link href="https://fonts.googleapis.com/css?family=Cairo|Literata|Montserrat:300|Raleway:200&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav>
<div class="logo">
<a href="index.html">
<h1>❮Islam Abdelfattah/❯</h1>
</a>
</div>
<ul class="topnav-links">
<li class="home fade">
<a href="index.html">Home</a>
</li>
<li>
<a href="projects.html">Projects</a>
</li>
<li>
<a href="skills.html">Skills</a>
</li>
<li>
<a href="experience.html">Experience</a>
</li>
<li>
<a style="border-bottom: 2px solid rgba(0, 0, 0, 0.8)" href="contact.html">Contact</a>
</li>
</ul>
</nav>
<section class="contact">
<div class="content-list">
<p>Let's collaborate! Feel free to reach out to me through these platforms:</p>
<ul>
<li>
<h2>
<a id="email" onclick="copyEmail(this)">
<span>Islam_9t9@yahoo.com</span>
</a>
</h2>
</li>
<li>
<h2>
<a href="https://www.linkedin.com/in/islam-abdelfattah-31661b151/">LinkedIn</a>
</h2>
</li>
<li>
<h2>
<a href="https://www.instagram.com/islamaf_/">Instagram</a>
</h2>
</li>
<li>
<h2>
<a href="http://t.me/islamaf1">Telegram</a>
</h2>
</li>
</ul>
</div>
</section>
<script type="text/javascript">
function copyEmail(that) {
var inp = document.createElement('input');
document.body.appendChild(inp)
inp.value = that.textContent.trim()
inp.select();
document.execCommand('copy', false);
inp.remove();
}
</script>
</body>
</html>