-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
66 lines (59 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mana AbbasZadeh</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat|Sacramento" rel="stylesheet">
<link rel="icon" href="favicon.ico">
<script>
function clicked(e) {
if (!confirm('از ارسال فرم اطمینان دارید؟')) {
e.preventDefault();
}
alert('پیام با موفقیت ارسال شد')
}
</script>
</head>
<body>
<div class="menu">
<a class="footer-link" href="index.html">Home</a>
<a class="footer-link" href="skills.html">Skills</a>
<a class="footer-link" href="achievements.html">Achievements</a>
</div>
<div class="top-container">
<img class="top-cloud" src="images/cloud.png" alt="cloud">
<div class="title-text">
<h1>I'm mana</h1>
<h2>a <span class="pro">pro</span>grammer.</h2>
</div>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud">
<img class="mountain" src="images/mountain.png" alt="mountain-img">
</div>
<form method="post" action="" id="form" class="validate">
<div class="form-field">
<label for="full-name">Full Name</label>
<input type="text" name="full-name" id="full-name" placeholder="Mana AbbasZadeh"/>
</div>
<div class="form-field">
<label for="email-input">Email</label>
<input type="email" name="email-input" id="email-input" placeholder="[email protected]"/>
</div>
<div class="form-field">
<label for="password-input">Subject</label>
<input type="text" name="text-input" id="text-input"/>
</div>
<div class="form-field">
<label for=""></label>
<input type="submit" value="Send!" onclick="clicked(event)"/>
</div>
</form>
</div>
<div class="bottom-container">
<a class="footer-link" href="mailto: [email protected]">E-Mail </a>
<a class="footer-link" href="https://github.com/Manazd">GitHub </a>
<a class="footer-link" href="https://stackoverflow.com/users/17511224/manaa">StackOverflow</a>
<p class="copyright">© 2021 Mana AbbasZadeh @ Sharif University</p>
</div>
</body>
</html>