Advertisement
makispaiktis

Codecademy - 13th Exercise (HTML Given)

Oct 14th, 2019 (edited)
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.   <head>
  5.     <link href='https://fonts.googleapis.com/css?family=Raleway:400, 600' rel='stylesheet' type='text/css'>
  6.     <link href='style.css' rel='stylesheet' type='text/css'/>
  7.   </head>
  8.  
  9.   <body>
  10.    
  11.     <header>
  12.         <nav>
  13.           <ul>
  14.             <li> About </li> <li> Work </li> <li> Team </li> <li> Contact </li>
  15.           </ul>
  16.         </nav>
  17.     </header>
  18.  
  19.     <main>
  20.       <div class="jumbotron">
  21.         <div class="container">  
  22.           <h1>We are Broadway</h1>
  23.           <a href="#" class="btn-main"> Get Started </a>
  24.         </div>
  25.       </div>
  26.     </main>
  27.  
  28.     <section class="supporting">
  29.       <div class="container">
  30.        
  31.         <div class="col">
  32.           <img src="https://s3.amazonaws.com/codecademy-content/projects/broadway/design.svg">
  33.           <h2>Design</h2>
  34.           <p>Make your projects look great and interact beautifully.</p>
  35.           <a href="#"> Learn More</a><br>
  36.         </div>
  37.        
  38.         <div class="col">
  39.           <img src="https://s3.amazonaws.com/codecademy-content/projects/broadway/develop.svg">
  40.           <h2>Develop</h2>
  41.           <p>Use modern tools to turn your design into a web site</p>
  42.           <a href="#"> Learn More</a><br>
  43.         </div>
  44.        
  45.         <div class="col">
  46.           <img src="https://s3.amazonaws.com/codecademy-content/projects/broadway/deploy.svg">
  47.           <h2>Deploy</h2>
  48.           <p>Use modern tools to turn your design into a web site</p>
  49.           <a href="#"> Learn More</a><br>
  50.         </div>
  51.        
  52.       </div>
  53.     </section>
  54.  
  55.     <footer>
  56.       <div class="container">
  57.         <p>&copy; Broadway 2017</p>
  58.       </div>
  59.     </footer>
  60.    
  61.   </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement