init
BIN
Circles.bmp
Normal file
After Width: | Height: | Size: 190 B |
BIN
Circles.png
Normal file
After Width: | Height: | Size: 476 B |
42
Pacific_Trails_Resort/activities.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title>Pacific Trail Resort :: Yurts</title>
|
||||
<meta charset="UTF-8">
|
||||
<link href="pacific.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<div class="wrapper">
|
||||
<body>
|
||||
<header> <h1>Pacific Trails Resort</h1> </header>
|
||||
<nav>
|
||||
<b>
|
||||
<a href="index.html"> Home</a>
|
||||
<a href="yurts.html"> Yurts</a>
|
||||
<a href="activities.html"> Activities</a>
|
||||
<a href="reservations.html"> Reservations</a>
|
||||
</b>
|
||||
</nav>
|
||||
<div id="trailhero">
|
||||
</div>
|
||||
<main><h2>Activities at Pacific Trails</h2></main>
|
||||
<dl>
|
||||
<dt><strong>Hiking</strong></dt>
|
||||
<dd>Pacific Trails Resort has 5 miles of hiking trails and is adjacent to a state park. Go it alone or join one of our guided hikes.</dd>
|
||||
<dt><strong>Kayaking</strong></dt>
|
||||
<dd>Ocean kayaks are available for guest use.</dd>
|
||||
<dt><strong>Bird Watching</strong></dt>
|
||||
<dd>While anytime is a good time for bird watching at Pacific Trails, we offer guided birdwatching trips at sunrise several times a week.</dd>
|
||||
</dl>
|
||||
</body>
|
||||
<footer>
|
||||
<small><i>Copyright © 2023 Pacific Trails Resort</i></small>
|
||||
<br>
|
||||
<a href="mailto:caleb@fontenot.com"> caleb@fontenot.com</a>
|
||||
</footer>
|
||||
</div>
|
||||
</html>
|
BIN
Pacific_Trails_Resort/images/coast.jpg
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
Pacific_Trails_Resort/images/favicon.ico
Normal file
After Width: | Height: | Size: 894 B |
BIN
Pacific_Trails_Resort/images/marker.gif
Normal file
After Width: | Height: | Size: 306 B |
BIN
Pacific_Trails_Resort/images/sunset.jpg
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
Pacific_Trails_Resort/images/trail.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
Pacific_Trails_Resort/images/yurt.jpg
Normal file
After Width: | Height: | Size: 91 KiB |
62
Pacific_Trails_Resort/index.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
|
||||
-->
|
||||
|
||||
<head>
|
||||
<title>Pacific Trail Resort</title>
|
||||
<meta charset="UTF-8">
|
||||
<link href="pacific.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<div class="wrapper">
|
||||
<body>
|
||||
<header>
|
||||
<h1>Pacific Trails Resort</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<b>
|
||||
<a href="index.html"> Home</a>
|
||||
<a href="yurts.html"> Yurts</a>
|
||||
<a href="activities.html"> Activities</a>
|
||||
<a href="reservations.html"> Reservations</a>
|
||||
</b>
|
||||
</nav>
|
||||
<div id="homehero">
|
||||
</div>
|
||||
<main><h2>Enjoy Nature in Luxury</h2></main>
|
||||
<p><span class="resort">Pacific Trails Resort</span> offers a special lodging experience on the California North Coast with panoramic views of the Pacific Ocean.
|
||||
Your stay at Pacific Trails Resort includes a sumptuous appointed private yurt and a cooked-to-order breakfast each morning.</p>
|
||||
<ul>
|
||||
<li>
|
||||
Relax in our lodge while enjoying complimentary appetizers and beverages
|
||||
</li>
|
||||
<li>
|
||||
Savor nightly fine dining with an ocean views
|
||||
</li>
|
||||
<li>
|
||||
Unwind in the heated outdoor pool and whirlpool
|
||||
</li>
|
||||
<li>
|
||||
Explore the coast on your own or join our guided tours
|
||||
</li>
|
||||
</ul>
|
||||
<div class="id">
|
||||
<p>
|
||||
<span class="resort">Pacific Trails Resort</span> <br>
|
||||
12010 Pacific Trails Road <br>
|
||||
Zephyr, CA 95555 <br>
|
||||
<br>
|
||||
888-555-5555
|
||||
<br>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<small><i>Copyright © 2023 Pacific Trails Resort</i></small>
|
||||
<br>
|
||||
<a href="mailto:caleb@fontenot.com"> caleb@fontenot.com</a>
|
||||
</footer>
|
||||
</div>
|
||||
|
101
Pacific_Trails_Resort/pacific.css
Normal file
@ -0,0 +1,101 @@
|
||||
/*
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
|
||||
*/
|
||||
/*
|
||||
Created on : Jan 25, 2023, 9:50:47 AM
|
||||
Author : caleb
|
||||
*/
|
||||
|
||||
body {
|
||||
background-color: #90C7E3;
|
||||
background-image: linear-gradient(to bottom, #FFFFFF, #90C7E3);
|
||||
color: #555555;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
.wrapper {
|
||||
background-color: #FFFFFF;
|
||||
width: 80%;
|
||||
min-width: 960px;
|
||||
max-width: 2048px;
|
||||
box-shadow: 3px 3px 3px #333333;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
header {
|
||||
background-color: #002171;
|
||||
color: #FFFFFF;
|
||||
line-height: 60px;
|
||||
top-padding: 15px;
|
||||
text-align: center;
|
||||
background-image: url("images/sunset.jpg");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right;
|
||||
}
|
||||
nav {
|
||||
background-color: #FFFFFF;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
padding: 1em;
|
||||
}
|
||||
main {
|
||||
top-padding: 1px;
|
||||
right-padding: 20px;
|
||||
left-padding: 20px;
|
||||
}
|
||||
h1{
|
||||
margin-bottom: 0;
|
||||
font-family: Georgia, "Times New Roman", sans-serif;
|
||||
}
|
||||
h2 {
|
||||
color: #1976D2;
|
||||
font-family: Georgia, "Times New Roman", sans-serif;
|
||||
text-shadow: 1px 1px #CCCCCC;
|
||||
}
|
||||
h3 {
|
||||
color: #000033;
|
||||
font-family: Georgia, "Times New Roman", sans-serif;
|
||||
}
|
||||
dt {
|
||||
color: #002171;
|
||||
}
|
||||
ul {
|
||||
list-style-image: url('images/marker.gif')
|
||||
}
|
||||
footer {
|
||||
font-size: 75%;
|
||||
font-style: italic;
|
||||
font-family: Georgia, "Times New Roman", sans-serif;
|
||||
text-align: center;
|
||||
padding: 2em;
|
||||
}
|
||||
.resort {
|
||||
color: #1976D2;
|
||||
font-weight: bold;
|
||||
}
|
||||
.contact {
|
||||
font-size: 90%;
|
||||
}
|
||||
img {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
#homehero {
|
||||
height: 300px;
|
||||
background-image: url("images/coast.jpg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
#yurthero {
|
||||
height: 300px;
|
||||
background-image: url("images/yurt.jpg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
#trailhero {
|
||||
height: 300px;
|
||||
background-image: url("images/trail.jpg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
46
Pacific_Trails_Resort/yurts.html
Normal file
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title>Pacific Trail Resort :: Yurts</title>
|
||||
<meta charset="UTF-8">
|
||||
<link href="pacific.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<div class="wrapper">
|
||||
<body>
|
||||
<header> <h1>Pacific Trails Resort</h1> </header>
|
||||
<nav>
|
||||
<b>
|
||||
<a href="index.html"> Home</a>
|
||||
<a href="yurts.html"> Yurts</a>
|
||||
<a href="activities.html"> Activities</a>
|
||||
<a href="reservations.html"> Reservations</a>
|
||||
</b>
|
||||
</nav>
|
||||
<div id="yurthero">
|
||||
</div>
|
||||
<main><h2>The Yurts at Pacific Trails</h2></main>
|
||||
<dl>
|
||||
<dt><strong>What is a yurt?</strong></dt>
|
||||
<dd>Our luxury yurts are permanent structures four feet off the ground.
|
||||
Each Yurt is fully enclosed with canvas walls, a wooden floor, and a roof dome that can be opened.</dd>
|
||||
<dt><strong>How are the yurts furnished?</strong></dt>
|
||||
<dd>Each yurt is furnished with a queen-size bed with down quilt and gas-fired stove. Your luxury camping experience
|
||||
includes electricity and a sink with hot and cold running water. Shower and restroom facilities are located in the
|
||||
lodge. </dd>
|
||||
<dt><strong>What should I bring?</strong></dt>
|
||||
<dd>Most guest pack comfortable walking shoes and plan to dress for changing weather with light layers of clothing.
|
||||
It's also helpful to bring a flashlight and a sense of adventure! </dd>
|
||||
</dl>
|
||||
</body>
|
||||
<footer>
|
||||
<small><i>Copyright © 2023 Pacific Trails Resort</i></small>
|
||||
<br>
|
||||
<a href="mailto:caleb@fontenot.com"> caleb@fontenot.com</a>
|
||||
</footer>
|
||||
</div>
|
||||
</html>
|
19
dynmap.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE HTML>
|
||||
<link href="root.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<body class="center"> <h1>Hi! Welcome to my Web Server!</h1>
|
||||
<nav class="center">
|
||||
|
||||
<a href="index.html">Home</a>
|
||||
<a href="https://gitea.calebfontenot.com">Gitea</a>
|
||||
<a href="https://search.calebfontenot.com">SearXNG Instance</a>
|
||||
<a href="dynmap.html">Minecraft Server Dynamic Maps</a><li>
|
||||
<li>
|
||||
<a href="https://survival.calebfontenot.com">Survival Server</a>
|
||||
<a href="https://creative.calebfontenot.com">Creative Server</a>
|
||||
<a href="https://modded.calebfontenot.com">Modded Server</a>
|
||||
<a href="https://skyfactory.calebfontenot.com">Skyfactory Server</a>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
17
dynmap.html.save
Normal file
@ -0,0 +1,17 @@
|
||||
<!DOCTYPE HTML>
|
||||
<link href="root.css" rel="stylesheet">
|
||||
|
||||
<body class="center"> <h1>Hi! Welcome to my Web Server!</h1>
|
||||
<nav class="center">
|
||||
|
||||
<a href="index.html">Home</a>
|
||||
<a href="https://gitea.calebfontenot.com">Gitea</a>
|
||||
<a href="https://search.calebfontenot.com">SearXNG Instance</a>
|
||||
<a href="dynmap.html">Minecraft Server Dynamic Maps</a><ln>
|
||||
|
||||
<a href="https://survival.calebfontenot.coM>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
50
index.html
Normal file
@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Caleb Fontenot's Web Server</title>
|
||||
<link rel="icon" href="https://files.calebfontenot.com/files/C%5C%26H%20Spin.gif" type="image/gif" />
|
||||
<meta content="Caleb Fontenot's Web Server" property="og:title" />
|
||||
<meta content="Home Page of Caleb Fontenot's Web Server" property="og:description" />
|
||||
<meta content="https://calebfontenot.com" property="og:url" />
|
||||
<meta content="https://files.calebfontenot.com/files/C%5C%26H%20Spin.gif" property="og:image" />
|
||||
<meta content="#FF0000" data-react-helmet="true" name="theme-color" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="root.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="center"> <h1>Hi! Welcome to my Web Server!</h1>
|
||||
<nav class="center">
|
||||
|
||||
<a href="index.html">Home</a>
|
||||
<a href="https://gitea.calebfontenot.com">Gitea</a>
|
||||
<a href="https://search.calebfontenot.com">SearXNG Instance</a>
|
||||
<a href="dynmap.html">Minecraft Server Dynamic Maps</a>
|
||||
<a href="mario">Mario</a>
|
||||
</nav>
|
||||
<p>Hi! My name is <mark>Caleb Fontenot.</mark> I am a software developer in my second semester at South Lousiana Community College.</p>
|
||||
<!--p>Below is Mr. Mouse absolutely jamming it</p>
|
||||
<!image src=https://files.calebfontenot.com/files/mrmouse.gif alt="Mr. Mouse">
|
||||
</!-->
|
||||
<!--
|
||||
<p>Image map demo:</p><hl>
|
||||
<img src="https://files.calebfontenot.com/files/max_face.jpg" usemap="#image_map">
|
||||
<map name="image_map">
|
||||
<area alt="Max's face" title="Max's face" href="" coords="1121,322,1330,634" shape="rect">
|
||||
</map>
|
||||
</!-->
|
||||
|
||||
<p>
|
||||
<a href="https://jigsaw.w3.org/css-validator/check/referer">
|
||||
<img style="border:0;width:88px;height:31px"
|
||||
src="https://jigsaw.w3.org/css-validator/images/vcss"
|
||||
alt="Valid CSS!" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>Footer moment</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
48
index.html.save
Normal file
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Caleb Fontenot's Web Server</title>
|
||||
<link rel="icon" href="https://files.calebfontenot.com/files/C%5C%26H%20Spin.gif" type="image/gif" />
|
||||
<meta content="Caleb Fontenot's Web Server" property="og:title" />
|
||||
<meta content="Home Page of Caleb Fontenot's Web Server" property="og:description" />
|
||||
<meta content="https://calebfontenot.com" property="og:url" />
|
||||
<meta content="https://files.calebfontenot.com/files/C%5C%26H%20Spin.gif" property="og:image" />
|
||||
<meta content="#FF0000" data-react-helmet="true" name="theme-color" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="root.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="center"> <h1>Hi! Welcome to my Web Server!</h1>
|
||||
<nav class="center">
|
||||
|
||||
<a href="index.html">Home</a>
|
||||
<a href="https://gitea.calebfontenot.com">Gitea</a>
|
||||
<a href="https://search.calebfontenot.com">SearXNG Instance</a>
|
||||
<a href="dynmap.html">Minecraft Server Dynamic Maps</a>
|
||||
<a href="mario">Mario</a>
|
||||
</nav>
|
||||
<p>Hi! My name is <mark>Caleb Fontenot.</mark> I am a software developer in my second semester at South Lousiana Community College.</p>
|
||||
<!--p>Below is Mr. Mouse absolutely jamming it</p>
|
||||
<!image src=https://files.calebfontenot.com/files/mrmouse.gif alt="Mr. Mouse">
|
||||
</!-->
|
||||
<!--
|
||||
<p>Image map demo:</p><hl>
|
||||
<img src="https://files.calebfontenot.com/files/max_face.jpg" usemap="#image_map">
|
||||
<map name="image_map">
|
||||
<area alt="Max's face" title="Max's face" href="" coords="1121,322,1330,634" shape="rect"> </map> </!-->
|
||||
|
||||
<p>
|
||||
<a href="https://jigsaw.w3.org/css-validator/check/referer">
|
||||
<img style="border:0;width:88px;height:31px"
|
||||
src="https://jigsaw.w3.org/css-validator/images/vcss"
|
||||
alt="Valid CSS!" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>Footer moment</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
22
root.css
Normal file
@ -0,0 +1,22 @@
|
||||
@font-face {
|
||||
font-family: Comic Mono;
|
||||
font-weight: normal;
|
||||
src: url(https://cdn.jsdelivr.net/npm/comic-mono@0.0.1/ComicMono.ttf);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Comic Mono;
|
||||
background-attachment: fixed;
|
||||
/* text-decoration: overline; */
|
||||
/* text-transform: uppercase; */
|
||||
/* background-color: #FFAAAA; */
|
||||
background-image: url(Circles.png);
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #FFFFFF;
|
||||
}
|