Advertisement
pacho_the_python

icons

Nov 3rd, 2022
1,216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {% load static %}
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>css-typography</title>
  7.     <link rel="stylesheet" href="{% static 'css/some_tasks.css' %}">
  8.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.2.0/css/all.css">
  9. </head>
  10. <body>
  11. <main>
  12.     <h2>Icons example</h2>
  13.     <nav>
  14.         <ul>
  15.             <li><a href="#"><i class="fa-solid fa-house-user"></i>Home</a></li>
  16.             <li><a href="#"><i class="fa-solid fa-book"></i>Library</a></li>
  17.             <li><a href="#"><i class="fa-solid fa-pencil"></i>Applications</a></li>
  18.             <li><a href="#"><i class="fa-solid fa-gear"></i>Settings</a></li>
  19.         </ul>
  20.     </nav>
  21.  
  22.     <h2>Buttons</h2>
  23.     <div>
  24.         <button type="button" class="checkout"><i class="fa-solid fa-cart-shopping"></i>Checkout</button>
  25.         <button type="button" class="info"><i class="fa-solid fa-circle-info"></i>Info</button>
  26.         <button type="button" class="delete"><i class="fa-solid fa-trash"></i>Delete</button>
  27.     </div>
  28.  
  29. </main>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement