From 3f98cede59438d906646102d01fb54ec52673695 Mon Sep 17 00:00:00 2001 From: JSriwongsa Date: Mon, 12 Jun 2023 10:04:04 -0500 Subject: [PATCH] reorganized the repo --- ecommerce/gym_items_website/cancel.html | 20 -- ecommerce/gym_items_website/index.html | 123 -------- ecommerce/gym_items_website/main.js | 10 - ecommerce/gym_items_website/style.css | 256 ---------------- ecommerce/gym_items_website/success.html | 20 -- msc_web/style.css | 372 ----------------------- msc_web/template1.html | 239 --------------- travel_web/style2.css | 235 -------------- travel_web/template2.html | 247 --------------- 9 files changed, 1522 deletions(-) delete mode 100644 ecommerce/gym_items_website/cancel.html delete mode 100644 ecommerce/gym_items_website/index.html delete mode 100644 ecommerce/gym_items_website/main.js delete mode 100644 ecommerce/gym_items_website/style.css delete mode 100644 ecommerce/gym_items_website/success.html delete mode 100755 msc_web/style.css delete mode 100755 msc_web/template1.html delete mode 100755 travel_web/style2.css delete mode 100755 travel_web/template2.html diff --git a/ecommerce/gym_items_website/cancel.html b/ecommerce/gym_items_website/cancel.html deleted file mode 100644 index c53b665..0000000 --- a/ecommerce/gym_items_website/cancel.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - Unsuccess Payment - - -
-

Payment Unsuccessful

-

Oops! Something went wrong, an error occurred while processing the order.

- - Back to Homepage -
- - - - diff --git a/ecommerce/gym_items_website/index.html b/ecommerce/gym_items_website/index.html deleted file mode 100644 index fe47b89..0000000 --- a/ecommerce/gym_items_website/index.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - FITs - - - - - -
- -
- -
-

Athletic Wear & Workout Items

-
- -
- -

Gym Athletic Shorts

- $39.95 - -
-
- -

Criss-Cross Sports Bras

- $39.99 - -
-
- -

Flowy Athletic Shorts

- $26.99 - -
-
- -

Sports Bras Workout

- $24.99 - -
-
- -

Long Sleeve T-Shirt

- $49.99 - -
-
- -

Women's 2 Piece Crop Top

- $45.00 - -
-
- -

Women Solid Basic Fleece

- $35.59 - -
-
- -

Full Zip Lightweight Workout Jacket

- $28.99 - -
-
- -

Waterproof Drawstring Backpack

- $19.99 - -
-
- -

Gym Bag with Wet Pocket & Shoes Compartment

- $49.00 - -
-
- -

Resistance Bands (3)

- $29.59 - -
-
- -

5-pair Low Cut Socks

- $19.75 - -
- -
-
- - - - diff --git a/ecommerce/gym_items_website/main.js b/ecommerce/gym_items_website/main.js deleted file mode 100644 index 0ef8b85..0000000 --- a/ecommerce/gym_items_website/main.js +++ /dev/null @@ -1,10 +0,0 @@ -let cartcheck = document.querySelector('#cart-check-out'); -let cart = document.querySelector('.cart'); -let closecart = document.querySelector('#close-btn'); - -cartcheck.onclick = () =>{ - cart.classList.add('active') -}; -closecart.onclick = () =>{ - cart.classList.remove('active') -}; diff --git a/ecommerce/gym_items_website/style.css b/ecommerce/gym_items_website/style.css deleted file mode 100644 index 2ef6e8f..0000000 --- a/ecommerce/gym_items_website/style.css +++ /dev/null @@ -1,256 +0,0 @@ -*{ - margin: 0; - padding: 0; - font-family: monospace; - scroll-padding-top: 2rem; - scroll-behavior: smooth; - box-sizing: border-box; - list-style: none; - text-decoration: none; -} -:root{ - --main-color: tan; - --text-color:saddlebrown; - --bg-color:peru; - --container-color:OldLace ; -} -img{ - width: 100%; -} -body{ - color: var(--bg-color); - background: OldLace ; -} -header{ - position: fixed; - top: 0; - left: 0; - width: 100%; - background: var(--container-color); - box-shadow: 0 1px 4px hsla(33, 90%, 47%, 0.484); - z-index: 100; -} -.nav{ - display: flex; - align-items: center; - justify-content: space-between; - padding: 20px 0; -} -.container{ - max-width: 1068px; - margin: auto; - width: 100%; -} -.logo{ - font-size: 1.2rem; - color: var(--bg-color); - font-weight: 600; -} -#cart-check-out{ - position: relative; - font-size: 1.5rem; - cursor: pointer; -} -#cart-check-out[ddata-amount]::after{ - contain: ''; -} -#cart-check-out[data-amount]::after{ - content: ''; - position: absolute; - top: 0; - right: -12px; - width: 20px; - height: 20px; - background: var(--text-color); - border-radius: 50%; - color: black; - font-size: 12px; - font-weight: 600; - display: flex; - justify-content: center; - align-items: center; -} -.cart{ - position: fixed; - right: -100%; - top: 0; - width: 360px; - min-height: 100vh; - padding: 20px; - background: var(--container-color); - box-shadow: -2px 0 4px hsla(0, 4%, 15% /10%); - transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); -} -.cart.active{ - right: 0; - transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); -} -.cart-title{ - text-align: center; - font-size: 1.5rem; - font-weight: 600; - margin-top: 2rem; -} -.total{ - display: flex; - justify-content: flex-end; - margin-top: 1.5rem; - border-top: 1px solid var(--text-color); -} -.total-title{ - font-size: 1.4rem; - font-weight: 600; - margin-top: 1rem; -} -.total-price{ - font-size: 1.2rem; - margin: 1rem 0 0 1rem; -} -.btn-buy{ - display: flex; - justify-content: center; - margin: 1.5rem auto 0 auto; - padding: 10px 15px; - width: 50%; - text-align: center; - border: none; - border-radius: 1.5rem; - background: mintcream; - color: var(--bg-color); - font-size: 1rem; - font-weight: 600; - cursor: pointer; -} -#close-btn{ - position: absolute; - top: 1rem; - right: 0.8rem; - font-size: 2rem; - color: var(--text-color); - cursor: pointer; -} -.cart-box{ - display: grid; - grid-template-columns: 30% 50% 15%; - align-items: center; - gap: 1rem; - margin-top: 1rem; -} -.cart-img{ - height: 100%; - width: 100%; - object-fit: contain; - padding: 15px; -} -.detail-box{ - display: grid; - row-gap: 0.5rem; -} -.cart-c-title{ - font-size: 1rem; - font-weight: 600; -} -.cart-price{ - font-weight: 600; -} -.cart-amount{ - border: 1px solid var(--text-color); - outline-color: var(--main-color); - width: 3.5rem; - text-align: center; - font-size: 1rem; - border-radius: 5px; -} -.cart-remove{ - font-size: 20px; - color: var(--text-color); - cursor: pointer; -} -.section-title{ - font-size: 1.5rem; - font-weight: 600; - text-align: center; - margin-bottom: 1.5rem; -} -.shop{ - margin-top: 2rem; -} -.shop-content{ - display: grid; - grid-template-columns: repeat(auto-fit, minmax(220px, auto)); - gap: 1rem; -} -section{ - padding: 4rem 0 3rem; -} -.product-img{ - width: 100%; - height: 65%; - border-radius: 5px; - margin-bottom: 0.5rem; -} -.product-box{ - position: relative; - background: snow; - padding: 10px; - border-radius: 5px; - transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); -} -.product-title{ - font-size: 1.2rem; - font-weight: 600; - margin-top: 0.8rem; -} -.price{ - font-weight: 500; -} -.add-cart{ - position: absolute; - bottom: 10px; - right: 10px; - background: var(--text-color); - color: var(--container-color); - padding: 10px; - font-size: 1.2rem; - border-radius: 50%; - cursor: pointer; -} -.add-cart:hover{ - background: hsla(56, 11%, 71%, 0.568); -} -.product-box:hover{ - background: var(--main-color); - border: 1px solid var(--main-color); - box-shadow: 0 8px 32px hsla(0.75, 0.82, 0.16, 1); - transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); -} -.success-container{ - width: 100%; - height: 100vh; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} -.success-container img{ - width: 200px; - margin: 2rem 0; -} -.success-container h1{ - font-size: 2.5rem; - margin-bottom: 10px; -} -.success-container p{ - max-width: 600px; - font-size: 1rem; - text-align: center; - margin: 0.5rem 0; -} -.success-btn{ - padding: 12px 20px; - border-radius: 2rem; - background: var(--text-color); - color: var(--container-color); - font-size: 1rem; - font-weight: 600; -} \ No newline at end of file diff --git a/ecommerce/gym_items_website/success.html b/ecommerce/gym_items_website/success.html deleted file mode 100644 index 7a371af..0000000 --- a/ecommerce/gym_items_website/success.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - Success Payment - - -
-

Payment Successful

-

Your order will arrive in 3 business days

- - Back to Homepage -
- - - - diff --git a/msc_web/style.css b/msc_web/style.css deleted file mode 100755 index a2b97f7..0000000 --- a/msc_web/style.css +++ /dev/null @@ -1,372 +0,0 @@ -*{ - margin: 0; - padding: 0; - font-family: sans-serif; -} -#header{ - height: 100vh; - background-image: url(images/wall2.jpg); - background-position: center; - background-size: cover; -} -.container{ - margin-right: 50px; - margin-left: 50px; -} -.logo{ - margin-top: 30px; - width: 125px; -} -.header-text{ - max-width: 550px; - margin-top: 100px; - color: aliceblue; -} -h1{ - font-size: 30px; -} -.square{ - height: 12px; - width: 12px; - display: inline-block; - background: grey; - margin: 15px 0; -} -.common-btn{ - padding: 18px 40px; - background: transparent; - outline: none; - border: 2px solid grey; - font-weight: bold; - color: rgb(182, 203, 182); - font-size: 14px; - cursor: pointer; -} -p{ - font-size: 18px; -} -.header-text button{ - margin-top: 20px; - margin-bottom: 60px; -} -.line1{ - width: 100px; - height: 1px; - background: grey; - display: inline-block; -} -.line2{ - width: 80px; - height: 1px; - background: grey; - display: inline-block; -} -.line3{ - width: 60px; - height: 1px; - background: grey; - display: inline-block; -} -.line{ - line-height: 10px; -} -#sideNav{ - width: 250px; - height: 100vh; - position: fixed; - right: -250px; - top: 0; - background: rgb(175, 180, 175); - z-index: 2; - transition: 0.5s; -} -nav ul li{ - list-style: none; - margin: 50px 20px; -} -nav ul li a{ - text-decoration: none; - color: black; -} -#menuBtn{ - width: 50px; - position: fixed; - right: 65px; - top: 35px; - z-index: 2; - cursor: pointer; -} -/*------- about -------*/ -#about,#framwork{ - padding: 100px 0; - display: flex; - align-items: center; - flex-wrap: wrap; -} -.about-left-col{ - flex-basis: 50%; -} -.about-left-col img{ - width: 70%; -} -.about-right-col{ - flex-basis: 50%; - text-align: right; -} -.about-text{ - max-width: 650px; - margin-right: 100px; - display: inline-block; -} -.about-text h2{ - margin: 25px 0 10px; - font-size: 28px; - font-style: italic; -} -.about-text h3{ - font-size: 20px; - font-style: italic; -} - -/*------- features -------*/ -#features{ - padding-top: 50px; - padding-bottom: 50px; -} -.feature-row{ - width: 80%; - margin: auto; - display: flex; - align-items: center; - justify-content: space-around; - flex-wrap: wrap; -} -.feature-col{ - flex-basis: 25%; - text-align: center; -} -.feature-col{ - width: 100px; - -} -.feature-col img{ - width: 35%; -} -.feature-col h4{ - margin-bottom: 15px; - font-size: 20px; - font-weight: 400; -} -.feature-btn{ - margin: 80px auto 0; - display: flex; - align-items: flex-end; - justify-content: center; -} -.feature-btn .line{ - text-align: right; - display: inline-block; - margin-right: 25px; -} -/*------- applications -------*/ -#applications{ - padding: 100px 0; -} -.container-app-row{ - display: flex; - align-items: center; - flex-wrap: wrap; -} -.app-right-col{ - flex-basis: 50%; -} -.app-right-col img{ - width: 90%; -} -.app-left-col{ - flex-basis: 50%; -} -.app-text{ - max-width: 550px; - margin-left: 100px; - display: inline-block; -} -.app-text button{ - margin: 20px 0; -} -/*------- Framworks -------*/ -#framwork button{ -margin: 30px 0; -} -/*------- contact -------*/ -.cont-row{ - display: flex; - align-items: center; - flex-wrap: wrap; -} -.cont-left-col, .cont-right-col{ - flex-basis: 50%; -} -.cont-right-col img{ - width: 40%; -} -form{ - max-width: 350%; - margin: 30px 0; -} -form input{ - width: 85%; - padding: 12px 10px; - margin-bottom: 5px; - outline: none; - box-shadow: none; - box-sizing: border-box; - border: 2px solid gray; -} -.btn-box{ - width: 40%; - display: flex; - justify-content: space-between; -} -.btn-box button{ - flex-basis: 46%; - padding: 18px 0; -} - -/*------ footer -----*/ -#footer{ - padding: 50px 0 30px; -} -hr{ - width: 100%; - border: 0; - border-top: 1px solid gray; -} -.footer-row{ - display: flex; - align-items: center; - justify-content: space-between; - flex-wrap: wrap; -} -.footer-left-col{ - flex-basis: 50; - margin-top: 40px; -} -.footer-links{ - display: flex; - justify-content: space-between; - flex-wrap: wrap; -} -.link-title h4{ - font-size: 20px; - color: rgb(35, 42, 37); - margin-bottom: 20px; -} -.link-title small{ - font-size: 15px; - color: rgb(61, 69, 67); -} -/*social media*/ - -.social-icons{ - width: 50px; - position: fixed; - top: 50%; - left: 0; - transform: translateY(-50%); - z-index: 1; -} -.social-icons img{ - width: 65%; - display: block; - margin: 0 auto 10px; - cursor: pointer; -} -@media only screen and (max-width:770px){ - #header{ - background-image: none; - } - .container{ - margin-right: 50px; - margin-left: 50px; - } - .logo{ - margin-top: b25px; - width: 50px; - } - .header-text{ - margin-top: 50px; - color: black; - } - h1{ - font-size: 25px; - } - #menuBtn{ - width: 40px; - right: 50px; - } - .common-btn{ - padding: 10px 16px; - - } - .social-icons img{ - width: 40%; - margin: 15px auto; - } - .about-left-col, .about-right-col{ - flex-basis: 100%; - } - .about-left-col img{ - width: 70%; - margin-top: -200px; - } - .about-text{ - margin: 50px 50px 0; - display: inline-block; - } - .about-text h2{ - font-size: 18px; - } - .feature-col{ - flex-basis: 100%; - margin-bottom: 20px; - } - .app-left-col{ - flex-basis: 100%; - } - .app-right-col{ - flex-basis: 100%; - margin-top: 20%; - margin-bottom: 40%; - } - .cont-left-col, .cont-right-col{ - flex-basis: 100%; - } - .cont-right-col{ - margin-top: 50px; - } - .cont-right-col img{ - width: 50%; - } - form input{ - width: 85%; - padding: 12px 10px; - margin-bottom: 5px; - outline: none; - box-shadow: none; - box-sizing: border-box; - border: 2px solid gray; - } - .btn-box{ - width: 60%; - display: flex; - justify-content: space-between; - } - .btn-box button{ - flex-basis: 48%; - padding: 10px 0; - } - .footer-left-col{ - flex-basis: 100%; - } -} \ No newline at end of file diff --git a/msc_web/template1.html b/msc_web/template1.html deleted file mode 100755 index 6819c9a..0000000 --- a/msc_web/template1.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - Complete Website Design- HTML & CSS - - - - - - - - - -
-
- -
-
-
-

About Us

- -

Artificial intelligence is intelligence perceiving, synthesizing, and inferring information-demonstrated - by machines, as opposed to intelligence displayed by humans or by other animals. - Example tasks in which this is done include speech recognition, computer vision, translation between (natural) - languages, as well as other mappings of inputs.


- -
-
-
- -
- -

"Machines will be capable, within twenty years, of doing any work a man can do."

-

-Herbert Simon-

- -
-
-
- - -
-
-
- -

Deep Learning

-

Deep learning is part of a broader family of machine learning methods, - which is based on artificial neural networks with representation learning.

-
- -
- -

Facial recognition

-

A facial recognition system is a technology capable of matching - a human face from a digital image or a video frame against a database of faces.

-
- -
- -

Quantum Computing

-

Quantum computing is a rapidly-emerging technology that harnesses - the laws of quantum mechanics to solve problems too complex for classical computers.

-
-
-
-
-
-
- -
- -
-
- - -
-
-
-
-

AI applications

- -

AI and machine learning-enabled technologies are used in medicine, transportation, robotics, - science, education, the military, surveillance, finance and its regulation, agriculture, - entertainment, retail, customer service, and manufacturing.

- -
-
-
- -
-
-
-
- - -
-
-
- - -
-
- -
-
-
-

Top 5 Frameworks for Integration AI
in App Development

- -

The best frameworks for AI and machine learning development tasks that can employ - to stay ahead with the technological trends in 2023 are
TensorFlow, - Microsoft CNTK,Torch, Theano, and Caffe.

- -
-
-
- -
-
-
-
- - -
-
-
-

Sign Up to join us

-
- - - -
- - -
-
-
-
-
- -
-
-
- -
-
-
- - - - - - -
- - - - -
- - - - - diff --git a/travel_web/style2.css b/travel_web/style2.css deleted file mode 100755 index 0478fc6..0000000 --- a/travel_web/style2.css +++ /dev/null @@ -1,235 +0,0 @@ -*{ - padding: 0; - margin: 0; -} -.header{ - height: 100vh; - background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(images_2/wall4.jpg); - background-size: cover; - background-position: center; - background-attachment: fixed; - padding-top: 30px; - text-align: center; - color: #fff; -} -.header img{ - width: 250px; - float: left; -} -.login-btn{ - width: 100px; - padding: 8px 0; - outline: none !important; - border: 2px solid goldenrod; - border-radius: 50px; - background: transparent; - color: #fff; - float: right; -} -.header h1{ - padding-top: 350px; - padding-bottom: 0; - font-size: 55px; -} -.header p{ - margin: 18px 0; -} -.input-group{ - width: 90% !important; - max-width: 500px; - border-radius: 30px; - background: lightgray; - margin: auto; - padding: 2px; -} -.form-control{ - border: 0 !important; - border-radius: 30px 0 0 30px !important; - margin: 2px; - box-shadow: none !important; -} -.input-group-text{ - width: 100px; - background-image: linear-gradient(#bc8c1b,#807b1e); - border: 0 !important; - color: #fff !important; - padding: 0 25px; - border-radius: 30px !important; - box-shadow: none !important; -} -/*------- features -------*/ -.features{ - padding: 100px 0; -} -h1{ - text-align: center; - padding-bottom: 30px; -} -.feature-img img{ - width: 100%; -} -.cost{ - width: 50px; - height: 50px; - background: #bc8c1b; - color: white; - font-weight: 600; - border-radius: 50%; - padding: 10px; - box-shadow: 0 0 10px 1px rgba(37, 73, 214,0.18); - position: absolute; - left: 20px; - bottom: -50px; -} -.feature-img{ - position: relative; -} -.rating{ - padding: 3px; - float: right; - background: white; - bottom: -1px; - right: 20; - position: absolute; -} -.features .fa{ - font-size: 15px; - color: #bc8c1b; -} -.feature-details{ - padding: 30px; - text-align:justify; -} -.feature-details h4{ - font-weight: 600; - margin-top: 20px; -} -.feature-details .fa{ - margin-right: 4px; -} -.feature-box{ - box-shadow: 0 0 10px 1px rgba(30, 31, 27, 0.18); - margin-bottom: 30px; -} -/*------- gallery -------*/ -.gallery{ - padding: 100px 0; - background: rgb(226, 224, 208);} -.gallery-box{ - position: relative; - margin-bottom: 30px;} -.gallery-box img{ - width: 100%; - border-radius: 5px; - cursor: pointer; - transition: 1s;} -.gallery-box img:hover{ - transform: scale(1.2);} -.gallery-box h4{ - display: block; - text-align: center; - font-weight: 600; - font-size: 26px; - position: absolute; - top: 50%; - left: 50%; - color: white; - transform: translate(-50%, -50%); - text-shadow: -2px 2px 2px grey;} - -/*------- slogan -------*/ -.slogan{ - height: 80vh; - padding-top: 13%; - background-image: url(images_2/pic4.jpg); - background-position: center; - background-size: cover; -} -.slogan-1{ - padding: 80px 0; - background: rgba(255, 250, 250, 0.665); - text-align: center; - color: black; -} -.book-btn{ - width: 150px; - padding: 8px 0; - outline: none !important; - border: 2px solid goldenrod; - border-radius: 50px; - background: transparent; - color: black; - font-weight: 600; - margin-top: 10%; -} -/*-------- Review --------*/ -.reviews{ - padding: 5%; -} -.c-review{ - text-align: center; - box-shadow: 0 0 10px 0 grey; - padding-bottom: 10%; -} -.c-review p{ - padding: 50px 10px 10px 10px; -} -.reviews img{ - width: 70px; - height: 70px; - border-radius: 100%; - position: relative; - margin: -30px 0 20px 40%; -} -.c-review p::before{ - content: '\201d'; - display: block; - position: absolute; - font-size: 80px; - color: #bc8c1b; - left: 44%; - top: -20px; - font-family: monospace; -} -/*------- footer ------*/ -.footer{ - padding: 100px 20px; - background-image: linear-gradient(#042791, #0fd2d8); - color: white; -} -.footer-logo{ - width: 120px; - margin-top: 15px; - margin-bottom: 15px; -} -.footer p{ - font-size: 16px; - text-align: justify; - padding-right: 30px; -} -.footer h4{ - text-align: left; - margin-top: 15px; - margin-bottom: 25px; -} -@media (max-width:770px){ - .header img{ - width: 150px; - float: left;} - .login-btn{ - width: 80px;} - .header h1{ - font-size: 28px;} - .header p{ - font-size: 10px; - } - .features h1{ - font-size: 30px; - } - .gallery h1{ - font-size: 30px; - } - .reviews h1{ - font-size: 30px; - } -} \ No newline at end of file diff --git a/travel_web/template2.html b/travel_web/template2.html deleted file mode 100755 index 90cf900..0000000 --- a/travel_web/template2.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - Complete Travel Web- HTML-CSS-Bootstrap - - - - - - -
-
- - -
-

Travel Around The World

-

Subscribe Excellence Vacation & Travel YouTube Channel

-
- -
- -
-
-
-
-

Popular Destinations

-
-
-
-
-
- -
-

$399

-
-
- - - - - -
-
-
-

Tokyo

-

Enjoy a classic Mt Fuji tour from Tokyo and explore the nearby destinations locals and travelers love!

-
- Tokyo - 5 days - 4 nights -
-
-
-
-
-
-
- -
-

$299

-
-
- - - - - -
-
-
-

Singapore

-

Future World! Where Art Meets Science is being transformed in one of its most dramatic redevelopments to date!

-
- Singapore - 3 days - 2 nights -
-
-
-
-
-
-
- -
-

$199

-
-
- - - - - -
-
-
-

Thailand

-

Enjoy round trip hotel transfers, ride aboard a speedboat, inclusive lunch, and more!

-
- Thailand - 3 days - 2 nights -
-
-
-
-
-
-
- - - - -
-
-
-
-
-

Special Discount, We Take Care Of You!

-

Book a room from now through December 31, 2023 to score 10% off select hotels.

-
-
- -
-
-
-
-
- -
-

Customer Reviews

-
-
-
-
-

France has a rich cultural heritage. French literature began in the Middle Ages, - and the country has a long history in fine arts, music and dance.

-
Lisa Balackpink
- France -
- -
- -
-
-

Super-chic Seoul combines modernism with ancient history; - coastal Busan serves up rugged beach spots; and Jeju Island wows with volcanic landscapes.

-
Tom Cruise
- South Korea -
- -
- -
-
-

As the meeting point of the Atlantic Ocean and Mediterranean Sea, this vast country offers some of - Europe's most dramatic landscapes.

-
Michael Jordan
- Spain -
- -
- -
-
-
- - - - \ No newline at end of file