-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
100 lines (93 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="site">
<header class="header-container">
<a href="/">
<h1 class="logo">
<img src="/assets/sbq.jpg" alt="Sia Billal Quba Logo" />
<span>Sia Billal Quba</span>
</h1>
</a>
<nav>
<ul class="navlinks">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
<li>
<a href="/contact.html">Contact</a>
</li>
<li>
<a href="https://linkedin.com/in/sia-billal-quba" target="_blank">
<img src="assets/linkedin.svg" alt="LinkedIn" />
</a>
</li>
<li>
<a href="https://github.com/siabillalquba" target="_blank">
<img src="assets/github.svg" alt="GitHub" />
</a>
</li>
<li>
<a href="https://twitter.com/siabillalquba" target="_blank">
<img src="assets/twitter.svg" alt="Twitter/X" />
</a>
</li>
</ul>
</nav>
</header>
<main class="site-content contact-container">
<form method="post" class="contact-form">
<section class="form-field">
<label for="full-name">Full name</label>
<input
id="full-name"
name="fullName"
type="text"
placeholder="Steve Jobs"
required
/>
</section>
<section class="form-field">
<label for="email">Email</label>
<input
id="email"
name="email"
type="email"
placeholder="[email protected]"
required
/>
</section>
<section class="form-field">
<label for="phone">Phone</label>
<input
id="phone"
name="phone"
type="tel"
placeholder="+1-234-567-890"
/>
</section>
<section class="form-field">
<label for="message">Message</label>
<textarea
id="message"
name="message"
placeholder="Please inform as detailed as possible."
rows="5"
></textarea>
</section>
<button type="submit" class="button">Submit Message</button>
</form>
</main>
<footer class="footer-container">
<p class="copyright">Sia Billal Quba © 2025</p>
</footer>
</body>
</html>