Advertisement
InasAwad

Untitled

Dec 28th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <style>
  3.     img{
  4.         float: right;
  5.         margin-right: 20px;
  6.         border: 10px ridge rgb(227, 209, 45);
  7.         margin-bottom: 6px;
  8.     }
  9.     .underline{
  10.         color: orange;
  11.         text-decoration: underline;        
  12.     }
  13.     h1 {
  14.         font-family: cursive;
  15.         color: rgb(194, 121, 58);
  16.         text-align: center;
  17.     }
  18.     h3{
  19.         color: rgb(77, 214, 91);
  20.         font-style: italic;
  21.     }
  22.     footer{
  23.         background: rgb(242, 235, 250);
  24.     }
  25.     body{
  26.         background: rgb(242, 245, 245);
  27.         border: 2px solid rgb(183, 230, 177);
  28.         padding: 10px;
  29.     }
  30. </style>
  31. <html>
  32.     <head>
  33.         <meta charset="utf-8">
  34.         <title>Project: Travel webpage</title>
  35.     </head>
  36.     <body>
  37.    
  38.         <h1 class="underline">Travel to France!</h1>
  39.         <img src="https://www.kasandbox.org/programming-images/avatars/avatar-team.png" alt="colorful image">
  40.         <h3>Places to visit </h3>
  41.         <ul> <li> <a href="#eiffel"> Eiffel Tower</a></li>
  42.         <li> <a href="#louvre">Louvre Museum.</a></li>
  43.         <li><a href="#palace">Palace of Versailles</a> </li>
  44.            
  45.         </ul>
  46.         <p>I have a plan to travel to France one day! I don't know when but I hope to carry out this plan. France is one of the finest countries in the world, people there are very friendly and helpful. </p>
  47.             <p>Also France is famous for fashion, if you want to get the fashinonable styles, then go to France. I think it's a colorful, bright country.<br></p>
  48.             <p id="eiffel"><span class="underline"> Eiffel Tower</span> is one of the most famous towers all over the world, you will have different experience visiting it.</p>
  49.             <p id="louvre"><span class="underline">Louvre Museum</span> is one of the historical places in France, none can visit France without visiting it, enjoy it when you visit France. </p>
  50.            
  51.             <p id="palace"><span class="underline"> Palace of Versailles </span> is a great palace, you will feel very exciting with what you are watching there, incredible sights and desings.<br> You will have a completely different feeling there!
  52.             </p>
  53.              <footer>to know more about it visit<a href="https://en.wikipedia.org/wiki/France" target="_blank" alt="More about France"> know France more.</a></footer>
  54.            
  55.  
  56.     </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement