Advertisement
Patrikrizek

Lesson6-homework-index

Mar 16th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.  
  8.     <title>Homework Bootstrap</title>
  9.  
  10.     <!-- Insert Bootstrap CSS link from https://getbootstrap.com/docs/5.1/getting-started/introduction/ -->
  11.     <!-- Insert JS Bundle from link https://getbootstrap.com/docs/5.1/getting-started/introduction/ -->
  12.  
  13.     <!-- You personal classes here -->
  14.     <style>
  15.         /* This CSS is not part of Bootstrap. This is your own CSS classes. */
  16.  
  17.         .example-my-class {
  18.             background-color: red;
  19.         }
  20.  
  21.     </style>
  22.  
  23. </head>
  24. <body>
  25.  
  26.     <!-- Header: includes logo and tagline -->
  27.    
  28.     <!-- Navigation: navigation bar -->
  29.         <!-- You can use div IDs to navigate (scroll) in your page, example: /index.html#nameSection -->
  30.         <!-- Or a link to another separate page, example: /mySecondPage.html -->
  31.  
  32.     <!-- Main: content of your index webpage -->
  33.         <!-- Some examples of div with ID below. -->
  34.         <div id="nameSectionOne">
  35.  
  36.         </div>
  37.        
  38.         <div id="nameSectionTwo">
  39.  
  40.         </div>
  41.  
  42.     <!-- Carrousel: insert a carousel with some pictures here -->
  43.  
  44.     <!-- Footer: 4 columns with - address, follow us, about, legal -->
  45.  
  46.     <!-- Rights: Insert a simple copyright section 2022 &copy; ... | -->
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement