-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContacts.html
91 lines (81 loc) · 4.01 KB
/
Contacts.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
<!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>OfflineTVMerch#Contacts</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type = "text/css" href="contactStyle.css">
<link rel="stylesheet" type = "text/css" href="OfflineTVStyle.css">
</head>
<body class = "contactBG">
<main>
<header class = "genHeader">
<a href="index.html"></a><img src="img/OfflineTVLogo.png" class="logo">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Streamers.html">Streamers</a></li>
<li><a href="Merch.html">Merch</a></li>
<li><a href="Contacts.html">Contact</a></li>
<li><a href class="menu"><i class="fa fa-bars" aria-hidden="true"></i></a></li>
</ul>
</nav>
</header>
<section class="contact">
<div class="container">
<div class="contactInfo">
<h2>Follow Us!</h2>
<div class = "box" >
<div class=icon><i class="fa fa-youtube" aria-hidden="true"></i></div>
<div class="text">
<h3 class="socialMedia">Youtube</h3>
<p><a href= "https://www.youtube.com/c/OfflineTVgg/featured">OfflineTV</a></p>
</div>
</div>
<div class = "box">
<div class=icon><i class="fa fa-facebook" aria-hidden="true"></i></div>
<div class="text">
<h3 class="socialMedia">Facebook</h3>
<p><a href= "https://www.facebook.com/OfflineTVgg/">OfflineTV</a></p>
</div>
</div>
<div class = "box">
<div class=icon><i class="fa fa-twitter" aria-hidden="true"></i></div>
<div class="text">
<h3 class="socialMedia">Twitter</h3>
<p><a href= "https://twitter.com/OfflineTV">OfflineTV</a></p>
</div>
</div>
</div>
<div class="contactForm">
<h2>Contact Us</h2>
<form action="output.html" method="GET">
<div class = "input-group">
<input type="text" id = "fUll-name" name = "Full Name" required ="required">
<span>Full Name</span>
</div>
<div class = "input-group">
<input type="email" id = "email" name = "Email" required = "required">
<span>Email</span>
</div>
<div class = "input-group">
<input type="text" id = "subject" name = "Subject" required ="required">
<span>Subject</span>
</div>
<div class = "input-group">
<textarea id="message" name="Message" required="required"></textarea>
<span>Type your Message...</span>
</div>
<div class="input-group">
<input type= "submit" name="" value = "Send">
</div>
</form>
</div>
</div>
</section>
</main>
</body>
</html>