-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.html
More file actions
73 lines (56 loc) · 2.26 KB
/
message.html
File metadata and controls
73 lines (56 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="icon" type="x-icon" href="iconlogo.png">
<link rel="stylesheet" href="message.css">
<title>Message</title>
</head>
<body>
<div class="top">
<div class="logo"><a href="#"><img src="photo/logoLightMode.png" alt=""></div>
<div class="haha"><i class="fa-solid fa-moon" class=""></i></div>
<a href="index.html" class="x">X</a>
</div>
<div class="message-caption">
<img src="mf-avatar.svg" alt="">
<h1>Thanks for taking the time to reach out. How can I help you today?</h1>
</div>
<div class="body">
<div class="container">
<div class="message">
<form action="">
<div class="name">
<label for="name">Name <span>*</span></label>
<input type="text" name="name" required>
</div>
<div class="email">
<label for="email">Email <span>*</span></label>
<input type="email" name="email" required>
</div>
<div class="select">
<label for="select"> Topic Selection <span>*</span></label>
<select name="select">
<option value=""></option>
<option value="web-development">Web Development</option required>
<option value="web-design">Web Design</option>
<option value="proposals">Proposals</option>
<option value="general-inquiries">General Inquiries</option>
</select>
</div>
<div class="textarea">
<label for="message">Message <span>*</span></label>
<textarea name="message" id="" cols="30" rows="10" required></textarea>
</div>
<div class="submit">
<button type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
<script src="message.js"></script>
</body>
</html>