-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
130 lines (101 loc) · 4.22 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planted | Contact</title>
<link rel="stylesheet" href="./styles/styles.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=Josefin+Sans:wght@300;400;700&family=Roboto:ital@0;1&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b1b1a9bb2c.js" crossorigin="anonymous"></script>
</head>
<body class="contact-body">
<header class="contact-header"> <!-- header STARTS -->
<nav class="nav-bar"> <!-- .nav-bar STARTS -->
<div class="wrapper"> <!-- .nav-bar .wrapper STARTS -->
<ul class="flex-nav-container">
<li class="logo-li"><p class="logo">Planted</p></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html" class="current-page">Contact</a></li>
</ul>
</div> <!-- .nav-bar .wrapper ENDS -->
</nav> <!-- .nav-bar ENDS -->
<div class="wrapper contact"> <!-- header .wrapper STARTS -->
<div>
<h1>Get in Touch</h1>
</div>
</div> <!-- header .wrapper ENDS -->
</header> <!-- header ENDS -->
<main class="contact-page-main"> <!-- main STARTS -->
<div class="wrapper"> <!-- main .wrapper STARTS -->
<section class="contact-flex"> <!-- .contact-flex STARTS -->
<div class="contact-left-flex">
<div class="social-icons">
<ul>
<li>
<a href="https:www.facebook.com" target="_blank">
<i class="fa-brands fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https:www.instagram.com" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https:www.twitter.com" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li>
<a href="https:www.whatsapp.com" target="_blank">
<i class="fa-brands fa-whatsapp"></i>
</a>
</li>
</ul>
</div>
<div class="contact-info">
<a href="mailto:[email protected]">
<p class ="email">[email protected]</p>
</a>
<a href="tel:+1(123)4567890" class="telephone">
<p>123 - 456 - 7890</p>
</a>
<a href="https://goo.gl/maps/WMf9W7Jx4zhTvhfy6" target="_blank" class="address">
<p>123 Queen Street West, Unit 10</p>
<p>Toronto, Ontario</p>
<p>M5V 2D5</p>
</a>
</div>
</div>
<div class="contact-right-flex">
<div class="comment-form-container"> <!-- comment container BEGINS -->
<form action="#" method="post" class="comment-form">
<div class="form-input">
<label for="name" class="sr-only"></label>
<input type="text" id="name" placeholder="Name">
</div>
<div class="form-input">
<label for="email" class="sr-only"></label>
<input type="text" id="email" placeholder="Email address">
</div>
<div class="textarea">
<label for="message" class="sr-only">Message for me</label>
<textarea name="message" id="message" cols="30" rows="6" placeholder="Message"></textarea>
<button>Submit</button>
</div>
</form>
</div> <!-- comment container ENDS -->
</div>
</section> <!-- .contact-flex ENDS -->
</div> <!-- main .wrapper ENDS -->
</main> <!-- main ENDS -->
<footer class="footer-contact"> <!-- footer STARTS -->
<p>Copyright © 2022 Juno College</p>
</footer> <!-- footer ENDS -->
</body>
</html>