-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
99 lines (86 loc) · 2.54 KB
/
Copy pathcontact.html
File metadata and controls
99 lines (86 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<style>
/* Internal CSS for styling */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.contact-info {
text-align: center;
background: linear-gradient(135deg, #3498db, #e74c3c);
color: #fff;
padding: 20px;
}
.company-logo {
display: block;
margin: 0 auto;
max-width: 150px;
}
.company-name {
font-size: 24px;
margin: 10px 0;
}
.contact-form {
background-color: #fff;
padding: 20px;
margin: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-label {
display: block;
margin-bottom: 5px;
}
.form-input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
.form-textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
.form-button {
background: linear-gradient(135deg, #3498db, #e74c3c);
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 3px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="nav">
<ul class="left" type="none">
<img class="home" src="https://imgs.search.brave.com/NyHePm1_NaEXi1xJ12mJzYt-wSS8XjuS7uPa8bFp0PY/rs:fit:860:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzAxLzkyLzgwLzI3/LzM2MF9GXzE5Mjgw/Mjc1OF9haUp0VUhm/eDQzUG8wdmg4MnFu/SExCOVJJTzZoOTMx/YS5qcGc"; style=" width:50px; height:50px ;">
<li><a href="project1.html">Go Back to Home</a></li>
</ul><br>
</div>
<div class="contact-info">
<img class="company-logo" src="E.Event.jpg" alt="E Event Logo">
<h1 class="company-name">E Event</h1>
</div>
<div class="contact-form">
<h2>Contact Us</h2>
<form>
<label class="form-label" for="name">Your Name:</label>
<input class="form-input" type="text" id="name" name="name" required>
<label class="form-label" for="email">Your Email:</label>
<input class="form-input" type="email" id="email" name="email" required>
<label class="form-label" for="message">Message:</label>
<textarea class="form-textarea" id="message" name="message" rows="4" required></textarea>
<button class="form-button" type="submit">Submit</button>
</form>
</div>
</body>
</html>