HTMLify
index.html
Views: 441 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dropdown Menu 02</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap" rel="stylesheet" > <link rel="stylesheet" href="style.css"> </head> <body> <header> <div class="navigation__group"> <div class="icon-wrapper"> <img class="icon" src="assets/message.svg" alt="Message"> </div> <div class="icon-wrapper notifications"> <img class="icon" src="assets/notification.svg" alt="Notification"> <div class="notification-mark notification-mark--pulsing"></div> </div> <img class="profile" src="assets/joe-doe-profile.png" alt="Joe Doe Picture"> </div> <div class="dropdown__wrapper hide dropdown__wrapper--fade-in none"> <div class="notifications-top"> <h2>Notifications</h2> </div> <div class="notification-items"> <div class="notification-item notification-item--recent"> <div class="avatar-wrapper"> <img class="avatar" src="assets/jason.jpg" alt="Jason Alexander"> <div class="notification-mark"></div> </div> <div class="notification-item__body"> <div> <strong>Jason Alexander</strong> completed <strong>Issue 131</strong> </div> <time> 6 min ago </time> </div> <div class="border"></div> </div> <div class="notification-item notification-item--recent"> <div class="avatar-wrapper"> <img class="avatar" src="assets/michelle.jpg" alt="Michelle Claude"> <div class="notification-mark"></div> </div> <div class="notification-item__body"> <div> <strong>Michelle Claude</strong> opened a new <strong>Issue 152</strong> </div> <time> 8 min ago </time> </div> </div> <div class="notification-item"> <div class="avatar-wrapper"> <img class="avatar" src="assets/ricahrd_taylor.jpg" alt="Richard Taylor"> </div> <div class="notification-item__body"> <div> <strong>Richard Taylor</strong> edited <strong>Road Map 2023</strong> </div> <time> 1 week ago </time> </div> </div> <div class="notification-item"> <div class="avatar-wrapper"> <img class="avatar" src="assets/jennifer.jpg" alt="Jennifer Floyd"> </div> <div class="notification-item__body"> <div> <strong>Jennifer Floyd</strong> created <strong>Road Map 2023</strong> </div> <time> 1 week </time> </div> </div> </div> </div> </header> <script src="script.js"></script> </body> </html> |