-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-home.html
101 lines (91 loc) · 3.65 KB
/
index-home.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>home</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0;">
<link rel="stylesheet" href="style-home.css">
</head>
<body>
<nav>
<div class="logo">
<a href="#" class="logo-link">
<img src="images/404-logocropped.png" class="logo-image">
</a>
</div>
<ul class="nav-links">
<li>
<a href="#contact-text-bottom">CONTACT</a>
</li>
<li>
<a href="gallery/gallery-index.html">GALLERY</a>
</li>
<li>
<a href="mixes/index-mixes.html">MIXES</a>
</li>
<li>
<a href="tickets/tickets-index.html">TICKETS</a>
</li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<section class="main-content">
<img class="stage" src="images/stagecropped.jpg" href="#" alt="stage">
<div class="about-container">
<div class="about-content">
<div class="stage-titles">
<h1 class="homepage-lrg-text">Strictly Rhythm </h1>
<h1 class="homepage-lrg-text">2021</h1>
</div>
<p class="stage-text">
A festival experience set in the rugged wattagans bushland, NSW.
600 people together for the first time since the Corona virus started.
</p>
<a class="stage-button" href="gallery/gallery-index.html">Gallery</a>
</div>
</div>
</section>
<!--CONTACT PAGE-->
<section class="contact">
<div class="contact-container">
<div class="contact-content">
<h2 class="contact-text">
WANT TO GET IN TOUCH?
</h2>
<h3 class="contact-text" id="contact-text-bottom" >
DROP US A MESSAGE IN THE FORM BELOW
</h3>
</div>
</div>
<div class="contact-wrap">
<form class="contact-form" action="https://formsubmit.co/[email protected]" method="POST">
<div class="form-container">
<ul class="form-content">
<li class="field" id="field-name">
<input type="text" name="full-name" id="full-name" class="form-input" placeholder="Full Name" required>
</li>
<li class="field" id="field-number">
<input type="text" name="phone-number" id="phone-number" class="form-input" placeholder="Phone Number" required>
</li>
<li class="field" id="field-email">
<input type="email" name="email" id="email" class="form-input" placeholder="Email" required>
</li>
<li class="field" id="field-text">
<textarea type="text" name="input-text" class="form-input" id="input-text" placeholder="Message"></textarea>
</li>
</ul>
</div>
<div class="button-container">
<button name="submit" type="submit" class="contact-button" href="#">SUBMIT</button>
</div>
<input type="hidden" name="_captcha" value="false">
</form>
</div>
</section>
<script src="script.js"></script>
</body>
</html>