-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
129 lines (126 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>amosnimos.com - Contact</title>
<link rel="stylesheet" href="css/basic.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
}
.container {
width: 80%;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.services {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.service {
flex: 1;
margin: 10px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
}
.service h3 {
margin-top: 0;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
position: fixed;
width: 100%;
bottom: 0;
}
form div {
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 5px;
}
input, textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<h1>AMOSNIMOS</h1>
</header>
<div id="hiddenContent" style="display: none;">
<div class="topnav">
<a class="btn-h" href="home.html">Home</a>
</div>
</div>
<div class="container">
<section>
<h2>Contact</h2>
<h3>I strive for a JavaScript-free experience on this website.</h3>
<p> However, for the contact form specifically, a small script might be used when you submit your message. This script's sole purpose is to assist with basic formatting, ensuring your message is clear and well-presented. It doesn't collect any additional information or generate cookies.</p>
<div class="container">
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
</div>
<div>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<div>
<button type="submit">Send</button>
</div>
</form>
</div>
<script>
document.getElementById('contactForm').addEventListener('submit', function(event) {
event.preventDefault();
const name = document.getElementById('name').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
const mailtoLink = `mailto:[email protected]?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent('Name: ' + name + '\n\nMessage:\n' + message)}`;
window.location.href = mailtoLink;
});
</script>
</section>
</div>
<footer>
© 2024 AMOSNIMOS. All rights reserved.
</footer>
</body>
</html>