Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Courses</title>
- <link
- rel="stylesheet"
- href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
- integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
- crossorigin="anonymous"
- />
- <link rel="preconnect" href="https://fonts.gstatic.com" />
- <link
- href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap"
- rel="stylesheet"
- />
- <link rel="stylesheet" href="style.css" />
- <script src="courses.js" defer></script>
- </head>
- <body>
- <header>
- <div>
- <img
- src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"
- alt="Google logo"
- />
- </div>
- <nav>
- <a class="add" href="add.html">Add</a>
- <button id="logout" class="logout">Log Out</button>
- </nav>
- </header>
- <main>
- <section class="slideshow">
- <div class="background">
- <div class="container">
- <h1 class="white">
- Lorem ipsum dolor sit, amet consectetur adipisicing.
- </h1>
- <h5>Sit amet consectetur adipisicing elit. Veritatis nesciunt.</h5>
- <button>Go Down</button>
- </div>
- </div>
- <div class="picturebooks"></div>
- </section>
- <section id="courses" class="container">
- <div class="flex">
- <div>
- <h1>Your Courses</h1>
- </div>
- <input
- id="search"
- class="search"
- type="search"
- placeholder="Search..."
- />
- </div>
- <div id="content" class="content"></div>
- <div class="center"><button id="allcourses">All Courses</button></div>
- </section>
- </main>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement