Skip to content

Commit b7617a7

Browse files
authored
Merge pull request #2 from enriquerf/main
Google Analytics tag commit/push test
2 parents 571f0e6 + c639b45 commit b7617a7

14 files changed

+1161
-66
lines changed

.DS_Store

6 KB
Binary file not shown.

activities.html

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZTX8Q81HF3"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
11+
gtag('config', 'G-ZTX8Q81HF3');
12+
</script>
13+
<meta charset="UTF-8" />
14+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
16+
<title>Activities</title>
17+
<link rel="preconnect" href="https://fonts.googleapis.com" />
18+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
19+
<link
20+
href="https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap"
21+
rel="stylesheet"
22+
/>
23+
<link rel="preconnect" href="https://fonts.googleapis.com" />
24+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
25+
<link
26+
href="https://fonts.googleapis.com/css2?family=Courgette&display=swap"
27+
rel="stylesheet"
28+
/>
29+
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
30+
<meta name="author" content="Enrique Rodriguez" />
31+
<meta
32+
name="description"
33+
content="The Visit Honduras website aims to condense a curated guide for a trip to Honduras done by a local. The website gives travel tips and guidance for anyone planning a visit." />
34+
</head>
35+
<style>
36+
p {
37+
text-indent: 30px;
38+
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
39+
font-size: 1.2em;
40+
color: white;
41+
}
42+
body {
43+
background-color: #3c586b;
44+
margin-left: 120px;
45+
margin-right: 120px;
46+
}
47+
48+
a:link {
49+
color: #add8e6;
50+
text-decoration: none;
51+
}
52+
a:visited {
53+
color: #4faecd;
54+
text-decoration: none;
55+
}
56+
#logo{
57+
height: 80px;
58+
width: 235px;
59+
border: 0;
60+
}
61+
#navbar {
62+
text-align: center;
63+
font-size: large;
64+
}
65+
#bottomlinks {
66+
text-align: center;
67+
}
68+
#copyright {
69+
text-align: center;
70+
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
71+
font-size: 10px;
72+
text-decoration: none;
73+
color: white;
74+
}
75+
h1 {
76+
text-align: center;
77+
padding: 30px;
78+
color: white;
79+
}
80+
81+
</style>
82+
83+
84+
85+
</head>
86+
<body>
87+
<div id="navbar">
88+
<a href="index.html">
89+
<img id="logo" src="images/visithnlogo.png" alt="Visit Honduras Logo">
90+
</a>
91+
<div id="navbar">
92+
<a href="index.html">&nbsp Home &nbsp</a>
93+
<a href="touristic-places.html">&nbsp Touristic Places &nbsp</a>
94+
<a href="travel-accomodations.html">&nbsp Travel Accomodations &nbsp</a>
95+
<a href="activities.html">&nbsp Activities &nbsp</a>
96+
<a href="travel-tips.html">&nbsp Travel Tips &nbsp</a>
97+
<a href="more-info.html">&nbsp More Info &nbsp</a>
98+
99+
</div>
100+
<hr />
101+
102+
103+
<hr />
104+
<div id="bottomlinks">
105+
<a href="index.html">&nbsp Home &nbsp</a>
106+
<a href="sitemap.html">&nbsp Sitemap &nbsp</a>
107+
<a href="contact-page.html">&nbsp Contact Us &nbsp</a>
108+
109+
<div>
110+
</div>
111+
<p id="copyright">Copyright Pending © 2022 Enrique Rodriguez.</p>
112+
113+
</body>
114+
</html>

contact-page.html

Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZTX8Q81HF3"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
11+
gtag('config', 'G-ZTX8Q81HF3');
12+
</script>
13+
<meta charset="UTF-8" />
14+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
16+
<title>Contact Us</title>
17+
<link rel="preconnect" href="https://fonts.googleapis.com" />
18+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
19+
<link
20+
href="https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap"
21+
rel="stylesheet"
22+
/>
23+
<link rel="preconnect" href="https://fonts.googleapis.com" />
24+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
25+
<link
26+
href="https://fonts.googleapis.com/css2?family=Courgette&display=swap"
27+
rel="stylesheet"
28+
/>
29+
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
30+
<meta name="author" content="Enrique Rodriguez" />
31+
<meta
32+
name="description"
33+
content="The Visit Honduras website aims to condense a curated guide for a trip to Honduras done by a local. The website gives travel tips and guidance for anyone planning a visit." />
34+
</head>
35+
<style>
36+
#copyright {
37+
text-align: center;
38+
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
39+
font-size: 10px;
40+
text-decoration: none;
41+
color: white;
42+
}
43+
body {
44+
background-color: #3c586b;
45+
text-align: left;
46+
position: relative;
47+
margin-left: 60px;
48+
}
49+
50+
a:link {
51+
color: #add8e6;
52+
text-decoration: none;
53+
}
54+
a:visited {
55+
color: #4faecd;
56+
text-decoration: none;
57+
}
58+
#logo{
59+
height: 80px;
60+
width: 235px;
61+
border: 0;
62+
}
63+
#navbar {
64+
text-align: center;
65+
font-size: large;
66+
}
67+
#bottomlinks {
68+
text-align: center;
69+
}
70+
71+
h1 {
72+
text-align: center;
73+
padding: 30px;
74+
color: white;
75+
}
76+
77+
78+
input[type=text] {
79+
width: 35%;
80+
padding: 25px 30px;
81+
margin: 8px 0;
82+
box-sizing: border-box;
83+
84+
}
85+
#formcontainer {
86+
border-radius: 5px;
87+
background-color: #f2f2f2;
88+
padding: 20px;
89+
position: relative;
90+
margin-left: 60px;
91+
font-size: 60px;
92+
}
93+
label{
94+
color: white;
95+
}
96+
div{
97+
color: white;
98+
padding: 10px 13px;
99+
margin: 8px 0;
100+
}
101+
</style>
102+
103+
</head>
104+
<body>
105+
<div id="navbar">
106+
<a href="index.html">
107+
<img id="logo" src="images/visithnlogo.png" alt="Visit Honduras Logo">
108+
</a>
109+
<div id="navbar">
110+
<a href="index.html">&nbsp Home &nbsp</a>
111+
<a href="touristic-places.html">&nbsp Touristic Places &nbsp</a>
112+
<a href="travel-accomodations.html">&nbsp Travel Accomodations &nbsp</a>
113+
<a href="activities.html">&nbsp Activities &nbsp</a>
114+
<a href="travel-tips.html">&nbsp Travel Tips &nbsp</a>
115+
<a href="more-info.html">&nbsp More Info &nbsp</a>
116+
117+
</div>
118+
<hr />
119+
120+
<h1>Contact Us</h1>
121+
122+
<div class="formcontainer"></div>
123+
124+
<form action="" method="post" id="feedbackcontactform">
125+
126+
<div>
127+
<label for="input-name" class="to-align">First Name: </label>
128+
<input
129+
type="text"
130+
placeholder="Please enter your first name..."
131+
size="30"
132+
id="input-firstname"
133+
name="First Name"
134+
/>
135+
</div>
136+
<div>
137+
<label for="input-lastname" class="to-align">Last Name: </label>
138+
<input
139+
type="text"
140+
placeholder="Please enter your last name..."
141+
size="30"
142+
id="input-lastname"
143+
name="Last Name"
144+
/>
145+
</div>
146+
<div>
147+
<label for="input-email" class="to-align">Email: &nbsp &nbsp &nbsp </label>
148+
<input
149+
type="text"
150+
placeholder="Please enter your e-mail address..."
151+
size="30"
152+
id="input-email"
153+
name="Email"
154+
/>
155+
</div>
156+
157+
<div>
158+
Are you currently in Honduras or close to an upcoming trip?
159+
<label><input type="radio" name="travelstatus" value="yes" />Yes</label>
160+
<label><input type="radio" name="travelstatus" value="no" />No</label>
161+
</div>
162+
163+
164+
<div>
165+
<label for="subject-select">How may we help you today?</label>
166+
<div>
167+
<select name="subject" id="subject-select">
168+
<option value="">Select Subject</option>
169+
<option value="questions">General Questions</option>
170+
<option value="guide">Get in touch with a local guide</option>
171+
<option value="feedback">Feedback</option>
172+
<option value="other">Other</option>
173+
</select>
174+
</div>
175+
</div>
176+
177+
<div>
178+
<div><label for="comments">Leave your comment below:</label></div>
179+
<div>
180+
<textarea
181+
id="comments"
182+
name="comments"
183+
rows="10"
184+
cols="45"
185+
placeholder="Enter your comment here..."
186+
></textarea>
187+
</div>
188+
</div>
189+
190+
<input type="submit" value="Send Form" />
191+
<input type="reset" value="Clear Form" />
192+
</form>
193+
</div>
194+
195+
196+
197+
198+
<hr />
199+
<div id="bottomlinks">
200+
<a href="index.html">&nbsp Home &nbsp</a>
201+
<a href="sitemap.html">&nbsp Sitemap &nbsp</a>
202+
<a href="contact-page.html">&nbsp Contact Us &nbsp</a>
203+
204+
<div>
205+
</div>
206+
<p id="copyright">Copyright Pending © 2022 Enrique Rodriguez.</p>
207+
208+
</body>
209+
</html>

images/.DS_Store

6 KB
Binary file not shown.

images/bulletpoint.png

2.58 KB
Loading

images/cayoscochinos.jpeg

3.3 MB
Loading

images/favicon.ico

15 KB
Binary file not shown.

images/visithnlogo.png

35.7 KB
Loading

0 commit comments

Comments
 (0)