Untitled

 avatar
unknown
plain_text
2 years ago
1.3 kB
3
Indexable
HTML

<!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">
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
    <title>Note Taking</title>
</head>  
<body>
<div class="popup-box">
    <div class="popup">
        <div class="content">
            <header>
                <p>Add a new note</p>
                <i class="uil uil-times"></i>
            </header>
            <form action="#">
                <div class="row title">
                    <label for="">Title</label>
                    <input type="text">
                </div>
                <div class="row description">
                    <label for="">Description</label>
                    <textarea></textarea>
                </div>
                <button>Add Note</button>
            </form>
        </div>
    </div>
</div>
    <div class="wrapper">
        <li class="add-box">
            <div class="icon">
                <i class="uil uil-file-plus-alt"></i>
            </div>
            
        </li>
        
    </div>

    <script src="script.js"></script>
    
</body>
</html>
Editor is loading...