-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (62 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>SeanH Web Designing</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" integrity="sha512-c42qTSw/wPZ3/5LBzD+Bw5f7bSF2oxou6wEb+I/lqeaKV5FDIfMvvRp772y4jcJLKuGUOpbJMdg/BTl50fJYAw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<h1 class="brand"><span>SeanH</span> Web Designing</h1>
<div class="wrapper animate__animated animate__bounceInLeft">
<div class="company-info">
<h3>Sean Halpin Web Designing</h3>
<ul>
<li><i class="fa fa-road"></i> 44 Something st
</li>
<li><i class="fa fa-phone"></i>(555) 555-5555
</li>
<li><i class="fa fa-envelope"></i>[email protected]
</li>
</ul>
</div>
<div class="contact">
<h3>Email Us</h3>
<div class="alert">Your message has been sent.</div>
<form id="contactForm">
<p>
<label>Name</label>
<input type="text" name="name" id="name" required></input>
</p>
<p>
<label>Company</label>
<input type="text" name="company" id="company"></input>
</p>
<p>
<label>Email</label>
<input type="email" name="email" id="email" required></input>
</p>
<p>
<label>Phone Number</label>
<input type="text" name="phone" id="phone"></input>
</p>
<p class="full">
<label>Message</label>
<textarea name="message" rows="5" id="message"></textarea>
</p>
<p class="full"><button type="submit">Submit</button></p>
</form>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-database.js"></script>
<script src="main.js"></script>
</body>
</div>
</html>