-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
70 lines (61 loc) · 2.72 KB
/
contact.html
File metadata and controls
70 lines (61 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Blen Gebre</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<header>
<h4>Blen</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="./aboutme.html">about Me</a></li>
<li><a href="/skill.html">Skills</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</header>
<section class="contact-section">
<h1>Contact <span>me</span></h1>
<div class="contact-container">
<form class="contact-form">
<div class="form-group">
<label for="firstName">First name</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="form-group">
<label for="middleName">Middle name</label>
<input type="text" id="middleName" name="middleName">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group message-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="15" placeholder="Type your message here..." required></textarea>
</div>
<button type="submit" class="submit-btn">
<i class="fas fa-paper-plane"></i>
Submit
</button>
</form>
</div>
</section>
<footer>
<header>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="./aboutme.html">about Me</a></li>
<li><a href="/skill.html">Skills</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</footer>
</body>
</html>