From 95ec4d69279284d4f15e07b52e97aa2485017f6c Mon Sep 17 00:00:00 2001 From: Chris Bell Date: Tue, 12 Nov 2024 22:34:51 -0600 Subject: [PATCH] init --- .idea/.gitignore | 5 +++ .idea/modules.xml | 8 ++++ .idea/prototype.iml | 12 ++++++ faqs.html | 26 +++++++++++ food-and-attractions.html | 26 +++++++++++ icons/island.svg | 34 +++++++++++++++ index.html | 27 ++++++++++++ lodging.html | 26 +++++++++++ styles.css | 91 +++++++++++++++++++++++++++++++++++++++ transportation.html | 26 +++++++++++ 10 files changed, 281 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/prototype.iml create mode 100644 faqs.html create mode 100644 food-and-attractions.html create mode 100644 icons/island.svg create mode 100644 index.html create mode 100644 lodging.html create mode 100644 styles.css create mode 100644 transportation.html diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..016300c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/prototype.iml b/.idea/prototype.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/prototype.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/faqs.html b/faqs.html new file mode 100644 index 0000000..b57a18d --- /dev/null +++ b/faqs.html @@ -0,0 +1,26 @@ + + + + + + FAQs - Island of Taniti + + + +
+ +

ISLAND OF TANITI

+ +
+ +
+ +
+ + diff --git a/food-and-attractions.html b/food-and-attractions.html new file mode 100644 index 0000000..3f32a46 --- /dev/null +++ b/food-and-attractions.html @@ -0,0 +1,26 @@ + + + + + + Food & Attractions - Island of Taniti + + + +
+ +

ISLAND OF TANITI

+ +
+ +
+ +
+ + diff --git a/icons/island.svg b/icons/island.svg new file mode 100644 index 0000000..d1f9f12 --- /dev/null +++ b/icons/island.svg @@ -0,0 +1,34 @@ + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..b4aad14 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + Island of Taniti + + + +
+ +

ISLAND OF TANITI

+ +
+ +
+

Welcome to Paradise

+

Taniti is a small, tropical island in the Pacific. While the island has an area of less than 500 square miles, the terrain is varied and includes both sandy and rocky beaches, a small but safe harbor, lush tropical rainforests, and a mountainous interior that includes a small, active volcano. Taniti has an indigenous population of about 20,000. Until a recent increase in tourism, most the Tanitian economy was dominated by fishing or agriculture.

+
+ + diff --git a/lodging.html b/lodging.html new file mode 100644 index 0000000..f5fc1db --- /dev/null +++ b/lodging.html @@ -0,0 +1,26 @@ + + + + + + Lodging - Island of Taniti + + + +
+ +

ISLAND OF TANITI

+ +
+ +
+ +
+ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..211f0e0 --- /dev/null +++ b/styles.css @@ -0,0 +1,91 @@ +/* styles.css */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: "DejaVu Serif", sans-serif; +} + +body { + color: #232323ff; + display: flex; + flex-direction: column; + background-color: #9c9c89ff; +} + +header { + background-color: #9a9a66ff; + color: white; + display: flex; + justify-content: center; + align-items: center; + padding: 20px; +} + +header ul { + display: flex; + list-style-type: none; + margin: 0; + padding: 0; + width: 48%; + justify-content: right; +} + +header ul li { + padding: 0 10px; +} + +header ul li a { + text-decoration: none; + color: white; + transition: color 0.3s ease-in-out; +} + +header ul li a:hover { + transition: color 0.3s ease-in-out; + color: #232323ff; +} + +header p { + display: flex; + justify-content: left; + font-size: large; + width: 48%; +} + +header img { + display: flex; + width: 2%; + margin-right: 2%; +} + +#content { + display: flex; + align-items: flex-start; + flex-direction: column; + width: 90%; + height: 100vh; + margin: auto; + background-color: #d4d4bcff; + padding: 1%; +} + +#content h1 { + justify-content: center; + text-align: center; + width: 100%; + margin: 1%; +} + +#content p { + margin: 1%; +} + +#content a { + color: #669a87ff; + text-decoration: none; +} + +#content a:hover { + text-decoration: underline; +} \ No newline at end of file diff --git a/transportation.html b/transportation.html new file mode 100644 index 0000000..eade1ef --- /dev/null +++ b/transportation.html @@ -0,0 +1,26 @@ + + + + + + Transportation - Island of Taniti + + + +
+ +

ISLAND OF TANITI

+ +
+ +
+ +
+ +