diff --git a/css/index.css b/css/index.css
index e764f2b01f..6921a5b836 100644
--- a/css/index.css
+++ b/css/index.css
@@ -1 +1,362 @@
-/* LESS needs to be processed */
\ No newline at end of file
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+html,
+body,
+div,
+span,
+applet,
+object,
+iframe,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+p,
+blockquote,
+pre,
+a,
+abbr,
+acronym,
+address,
+big,
+cite,
+code,
+del,
+dfn,
+em,
+img,
+ins,
+kbd,
+q,
+s,
+samp,
+small,
+strike,
+strong,
+sub,
+sup,
+tt,
+var,
+b,
+u,
+i,
+center,
+dl,
+dt,
+dd,
+ol,
+ul,
+li,
+fieldset,
+form,
+label,
+legend,
+table,
+caption,
+tbody,
+tfoot,
+thead,
+tr,
+th,
+td,
+article,
+aside,
+canvas,
+details,
+embed,
+figure,
+figcaption,
+footer,
+header,
+hgroup,
+menu,
+nav,
+output,
+ruby,
+section,
+summary,
+time,
+mark,
+audio,
+video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+menu,
+nav,
+section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol,
+ul {
+ list-style: none;
+}
+blockquote,
+q {
+ quotes: none;
+}
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+* {
+ box-sizing: border-box;
+}
+html {
+ font-size: 62.5%;
+}
+html,
+body {
+ font-family: 'Roboto', sans-serif;
+}
+h1,
+h2,
+h3,
+h4,
+h5 {
+ font-family: 'Indie Flower', cursive;
+}
+h1 {
+ font-size: 4rem;
+}
+h2 {
+ font-size: 3.2rem;
+ padding-bottom: 10px;
+}
+h4 {
+ font-size: 2.5rem;
+ padding-bottom: 10px;
+}
+p {
+ line-height: 1.5;
+ font-size: 1.6rem;
+ padding-bottom: 10px;
+}
+img {
+ max-width: 100%;
+ height: auto;
+}
+.container {
+ max-width: 800px;
+ width: 100%;
+ margin: 0 auto;
+}
+.heading {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 10px;
+}
+.heading .navigation {
+ display: flex;
+ align-content: space-between;
+}
+.heading .navigation a {
+ text-decoration: none;
+ font-size: 14px;
+ padding: 10px;
+}
+.footer {
+ width: 100%;
+ border-top: 2px dashed silver;
+ background: #FFEBCD;
+}
+.footer p {
+ text-align: center;
+ color: #212529;
+ font-size: 1.6rem;
+ padding: 20px;
+}
+.container-home {
+ width: 96%;
+ padding: 2%;
+}
+.container-home .heading {
+ border-bottom: 2px dashed #C0C0C0;
+ padding-bottom: 10px;
+}
+@media (max-width:500px) {
+ .container-home .heading {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 2%;
+ }
+}
+.container-home .heading .navigation a {
+ background-color: #17A2B8;
+}
+.container-home .heading .navigation a:hover {
+ background-color: #4cd3e9;
+}
+.container-home .content-section-Welcome {
+ border-bottom: 2px dashed #C0C0C0;
+ width: 100%;
+ margin: 30px 0;
+ padding-right: 1%;
+}
+.container-home .content-section-Welcome .img-content {
+ width: 100%;
+}
+.container-home .content-section-Welcome .img-content img {
+ width: 100%;
+}
+.container-home .content-section-Welcome .text-content {
+ width: 100%;
+}
+.container-home .content-section {
+ border-bottom: 2px dashed #C0C0C0;
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+}
+.container-home .content-section .text-content {
+ width: 48%;
+}
+@media (max-width:500px) {
+ .container-home .content-section .text-content {
+ width: 98%;
+ margin: auto;
+ }
+}
+.container-home .content-section .img-content {
+ width: 48%;
+}
+@media (max-width:500px) {
+ .container-home .content-section .img-content {
+ width: 98%;
+ margin: auto;
+ }
+}
+.container-home .content-section .img-content img {
+ width: 100%;
+ border-radius: 10px;
+}
+.container-home .content-section-inverse-content {
+ border-bottom: 2px dashed #C0C0C0;
+ margin: 30px 0;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+}
+@media (max-width:500px) {
+ .container-home .content-section-inverse-content {
+ flex-wrap: wrap-reverse;
+ }
+}
+.container-home .content-section-inverse-content .img-content {
+ width: 48%;
+ padding-left: 1%;
+}
+@media (max-width:500px) {
+ .container-home .content-section-inverse-content .img-content {
+ width: 98%;
+ margin: auto;
+ }
+}
+.container-home .content-section-inverse-content .img-content img {
+ border-radius: 10px;
+}
+.container-home .content-section-inverse-content .text-content {
+ width: 48%;
+ padding-right: 1%;
+}
+@media (max-width:500px) {
+ .container-home .content-section-inverse-content .text-content {
+ width: 98%;
+ margin: auto;
+ }
+}
+.container-home .inverse-content {
+ padding-bottom: 30px;
+ border-bottom: 2px dashed #C0C0C0;
+}
+.container-home .inverse-content .text-content {
+ width: 48%;
+ padding-left: 1%;
+ padding-right: 0;
+}
+.container-home .inverse-content .img-content {
+ padding-right: 1%;
+ padding-left: 0;
+}
+.container-home .content-destination {
+ width: 75%;
+ margin: 0 auto 30px;
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+}
+@media (max-width:500px) {
+ .container-home .content-destination {
+ width: 98%;
+ margin: auto;
+ }
+}
+.container-home .content-destination img {
+ border-radius: 10px;
+}
+.container-home .content-pick {
+ padding-top: 30px;
+ border-top: 2px dashed #C0C0C0;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+}
+.container-home .content-pick .destination {
+ width: 30%;
+ margin: 40px auto;
+}
+@media (max-width:500px) {
+ .container-home .content-pick .destination {
+ width: 98%;
+ margin: 10px;
+ padding-right: 1%;
+ }
+}
+.container-home .content-pick .destination .btn {
+ text-decoration: none;
+ color: white;
+ text-align: center;
+ padding-top: 10px;
+ vertical-align: middle;
+ font-size: 14px;
+ background-color: #17A2B8;
+ border-radius: 10px;
+ height: 40px;
+}
+.container-home .content-pick .destination .btn a {
+ color: white;
+ text-decoration: none;
+ width: 100%;
+}
+.container-home .content-pick .destination .btn:hover {
+ background-color: #4cd3e9;
+}
diff --git a/form.html b/form.html
new file mode 100644
index 0000000000..1ad9dc6603
--- /dev/null
+++ b/form.html
@@ -0,0 +1,28 @@
+
+
+
+
+
+ Document
+
+
+ Input you info
+
+
+
diff --git a/index.html b/index.html
index bb8663b768..f108952f7e 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,7 @@
Fun Bus Travel Agency - Solution
-
+
@@ -15,11 +15,32 @@
+
+
+
+
+
+
+
+

+
+
Welcome To Fun Bus!
+
Traveling expedition modern, clean webdesign blogger clean website theme modern.
+ Design pretty design, travelbloger adventure WordPress wanderlust theme blogger website expedition theme traveler.
+ Adventure fun traveler pretty design website expedition.
+
+
Expedition colorful design simple excursion blogger blogger design WordPress design, design organized website theme.
+
+
-
-
-
-
Let's Go!
@@ -30,16 +51,17 @@
Let's Go!
-
+
+
-

-
-
-
Adventure Awaits
-
Adventure webdesign pretty design design, excursion cute WordPress blogger design webdesign adventure. Pretty simple traveling fun WordPress wanderlust darn simple organized.
-
Expedition colorful design simple excursion blogger blogger design WordPress design, design organized website theme.
-
-
+
+
+
+
Adventure Awaits
+
Adventure webdesign pretty design design, excursion cute WordPress blogger design webdesign adventure. Pretty simple traveling fun WordPress wanderlust darn simple organized.
+
Expedition colorful design simple excursion blogger blogger design WordPress design, design organized website theme.
+
+
Pick Your Destination
@@ -51,20 +73,29 @@ Pick Your Destination
Fun In The Sun
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
+
+
Mountain Excursion
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
+
+
Island Getaway
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
+
+
-
+