Advertisement
Patrikrizek

Lesson1-index

May 10th, 2022
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.     <head>
  5.  
  6.         <!-- The Title will be shown in the tab of the internet browser. -->
  7.         <title>  My 1st webpage   </title>
  8.     </head>
  9.  
  10.  
  11.  
  12.     <body>
  13.  
  14.         <h1>Hello World!</h1>
  15.  
  16.         <p>This is a paragraph.</p>
  17.  
  18.         <p>This is the second paragraph.</p>
  19.  
  20.         <br>
  21.         <hr>
  22.        
  23.         <p>Lorem ipsum dolor sit, <b>amet consectetur</b> adipisicing elit. Minus necessitatibus ab, tempora voluptatum <i>exercitationem debitis</i>.
  24.            
  25.             <b><i>Expedita voluptatibus sint</i></b> odit quam vero iusto qui illum eveniet voluptate aliquid eaque ea animi provident omnis quia, placeat incidunt!
  26.            
  27.             <em>Itaque, autem beatae dolore,</em>
  28.             <strong>quas necessitatibus voluptatum</strong>
  29.            
  30.             id <del>deserunt recusandae</del>
  31.             <ins>natus numquam</ins>, quam ea.</p>
  32.  
  33.             <!-- Links -->
  34.             <!-- This is a link to the extrnal image. -->
  35.             <a href="https://cdn.londonandpartners.com/-/media/images/london/visit/things-to-do/food-and-drink/cafe/cutter-and-squidge/cutter_squidge_eton_mess_slice_1920.jpg?mw=1030&hash=BD3CD4959F778D56E7CE66FB51E3962C399171BB">Cake</a>
  36.  
  37.             <br>
  38.  
  39.             <!-- This is a link to the extrnal webpage. -->
  40.             <a href="https://www.bbc.co.uk/weather" target="_blank">News</a>
  41.  
  42.             <br>
  43.  
  44.             <!-- This is my image in my folder. -->
  45.             <!-- Use relative path -->
  46.             <a href="/lesson-1/dumbo.jpg">The image in my folder</a>
  47.  
  48.             <br>
  49.  
  50.             <!-- Image -->
  51.             <img src="/lesson-1/dumbo.jpg" alt="elephant">
  52.     </body>
  53.  
  54. </html>
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement