Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- {% load static %}
- <head>
- <meta charset="UTF-8">
- <title>css-typography</title>
- <link rel="stylesheet" href="{% static 'css/some_tasks.css' %}">
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.2.0/css/all.css">
- </head>
- <body>
- <main>
- <h2>Icons example</h2>
- <nav>
- <ul>
- <li><a href="#"><i class="fa-solid fa-house-user"></i>Home</a></li>
- <li><a href="#"><i class="fa-solid fa-book"></i>Library</a></li>
- <li><a href="#"><i class="fa-solid fa-pencil"></i>Applications</a></li>
- <li><a href="#"><i class="fa-solid fa-gear"></i>Settings</a></li>
- </ul>
- </nav>
- <h2>Buttons</h2>
- <div>
- <button type="button" class="checkout"><i class="fa-solid fa-cart-shopping"></i>Checkout</button>
- <button type="button" class="info"><i class="fa-solid fa-circle-info"></i>Info</button>
- <button type="button" class="delete"><i class="fa-solid fa-trash"></i>Delete</button>
- </div>
- </main>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement