-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbraian-pita-contact.html
166 lines (118 loc) · 7.39 KB
/
braian-pita-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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Contact</title>
<!-- Font Awesome Icons -->
<link href="https://braianpita.github.io/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="https://braianpita.github.io/vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Theme CSS - Includes Bootstrap -->
<link href="https://braianpita.github.io/css/creative.min.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top py-3" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Main Project</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto my-2 my-lg-0">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/braian-pita-contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/braian-pita-direction.html">Directions</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/braian-pita-youtube.html">Youtube</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/braian-pita-photo-gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://braianpita.github.io/sitemap.html">Sitemap</a>
</li>
<li class="nav-item">
<div class="dropdown show">
<a class="nav-link dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">LABS</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab1.html">Lab 1</a>
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab2.html">Lab 2</a>
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab3.html">Lab 3</a>
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab4.html">Lab 4</a>
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab5.html">Lab 5</a>
<a class="dropdown-item" href="https://braianpita.github.io/LABS/lab6.html">Lab 6</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- Contact Section -->
<section class="page-section" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="mt-0">Let's Get In Touch!</h2>
<hr class="divider my-4">
<form method="post" action="process.php">
<fieldset>
<legend>Contact Information</legend>
<hr />
<label>Name: </label><input type="text" name="name" placeholder="Name Lastname" autofocus required />
<p></p>
<label>Email: </label><input type="email" name="email" placeholder="[email protected]" required />
<br />
<br />
<label>Phone Number: </label><input type="tel" name="phone" placeholder="+1 (888) 8888-888" />
<br />
<br />
<label>Date: </label><input type="date" name="date" />
<p></p>
<label>Time: </label><input type="time" name="time" />
<br />
<br />
<label>Message: </label>
<br />
<textarea class="form-control" rows="3" name="message" placeholder="write your message here..." required autocomplete="off"></textarea>
<br />
<br />
<button type="submit" class="btn btn-primary mb-2">Submit</button>
</fieldset>
</form>
<br />
<p>This page is made as a way for clients to be able to communicate with the company, entity, or person. In this case it allows clients to communicate to my email automatically by instroducing their information and a message. Once the information is successfully filled and sent I will receive an email with all the information so that I can reach them back. My email remains unknown to the person sending the message, which allows for my own privacy and safety. It is a quick and easy way for clients and viewers to get in contact with me, which makes the website more useful and appealing.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-light py-5">
<div class="container">
<div class="small text-center text-muted">Copyright © <p id="year"></p></div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="https://braianpita.github.io/vendor/jquery/jquery.min.js"></script>
<script src="https://braianpita.github.io/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://braianpita.github.io/vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="https://braianpita.github.io/vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Custom scripts for this template -->
<script src="https://braianpita.github.io/js/creative.min.js"></script>
<script src="https://braianpita.github.io/js/getYear.js"></script>
</body>
</html>