-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontactme.php
53 lines (52 loc) · 1.73 KB
/
contactme.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact me</title>
<style>
body {
font: 1em sans-serif;
text-align: center;
}
</style>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
function kiki() {
var x = document.getElementById("dvivi");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="faq.php">FAQ</a>
<a href="about.php">About</a>
<a href="contactme.php">Contact Me</a>
<a href="support.php">Support</a>
<a href="profile.php">Profile</a>
</nav>
<h1>Contact Page</h1>
<h2>You can Contact me through this Systems: </h2>
<p>Linkedin: <a href="https://www.linkedin.com/in/nir-shakibi-715135208/">Link</a></p>
<p>Instagram: <a href="https://instagram.com/nir_shakibi">Insta</a></p>
<p>Github: <a href="https://github.com/nirsha123">Here</a></p>
<div id="myDIV" class="toshow" style="display:none">nirshakibi123@outlook.co.il</div>
<div id="dvivi" class="toshow" style="display:none"><p>Email: <button onclick="myFunction()">Click Here.</button></p></div>
<div>are you sure you want to send me an email? <button onclick="kiki()">Yes.</button></div>
</body>
</html>