-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
81 lines (77 loc) · 3.76 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Joshua Briggs</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap" rel="stylesheet">
</head>
<section class="header">
<nav>
<a><img src="images/HTML.svg"</a>
<a><img src="images/CSS.png"</a>
<div class="nav-links">
<ul>
<li><a href="Portfolio.html">PORTFOLIO</a></li>
<li><b href="Contact.html">CONTACT</b></li>
</ul>
</div>
</nav>
<!-- Container box for the contact details -->
<div class="container">
<h1>Contact</h1>
<p>I would love to respond to any queries. Please feel free to get in touch with me.</p>
<div class="contact-box">
<!-- <div class="contact-left">
<h3>Send your request</h3>
<form>
<div class="input-row">
<div class="input-group">
<label>Name</label>
<Input type="text" placeholder="Your name">
</div>
<div class="input-group">
<label>Phone</label>
<Input type="text" placeholder="Your number">
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Email</label>
<Input type="email" placeholder="Your email">
</div>
<div class="input-group">
<label>Subject</label>
<Input type="text" placeholder="Your query">
</div>
</div>
<label>Message</label>
<textarea rows="5" placeholder="Your message"></textarea>
<button type="submit">Submit</button>
</form>
</div>-->
<div class="contact-right">
<h3>Reach me</h3>
<table>
<tr>
<td>Email</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Phone</td>
<td>07847 241257</td>
</tr>
<tr>
<td>Address</td>
<td>425 Nottingham Road<br>
NG18 4SU<br>
Mansfield</td>
</tr>
</table>
</div>
</div>
</div>
</section>
</html>