Advertisement
talalaite

Untitled

Mar 31st, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.08 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.     <title>Courses</title>
  8.     <link
  9.      rel="stylesheet"
  10.      href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
  11.      integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
  12.      crossorigin="anonymous"
  13.    />
  14.     <link rel="preconnect" href="https://fonts.gstatic.com" />
  15.     <link
  16.      href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap"
  17.      rel="stylesheet"
  18.    />
  19.     <link rel="stylesheet" href="style.css" />
  20.     <script src="courses.js" defer></script>
  21.   </head>
  22.  
  23.   <body>
  24.     <header>
  25.       <div>
  26.         <img
  27.          src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"
  28.          alt="Google logo"
  29.        />
  30.       </div>
  31.       <nav>
  32.         <a class="add" href="add.html">Add</a>
  33.         <button id="logout" class="logout">Log Out</button>
  34.       </nav>
  35.     </header>
  36.  
  37.     <main>
  38.       <section class="slideshow">
  39.         <div class="background">
  40.           <div class="container">
  41.             <h1 class="white">
  42.               Lorem ipsum dolor sit, amet consectetur adipisicing.
  43.             </h1>
  44.             <h5>Sit amet consectetur adipisicing elit. Veritatis nesciunt.</h5>
  45.             <button>Go Down</button>
  46.           </div>
  47.         </div>
  48.  
  49.         <div class="picturebooks"></div>
  50.       </section>
  51.  
  52.       <section id="courses" class="container">
  53.         <div class="flex">
  54.           <div>
  55.             <h1>Your Courses</h1>
  56.           </div>
  57.  
  58.           <input
  59.            id="search"
  60.            class="search"
  61.            type="search"
  62.            placeholder="Search..."
  63.          />
  64.         </div>
  65.         <div id="content" class="content"></div>
  66.  
  67.         <div class="center"><button id="allcourses">All Courses</button></div>
  68.       </section>
  69.     </main>
  70.   </body>
  71. </html>
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement