deepika - HTMLify profile

deepika's Profile Picture

deepika

9 Files

1954 Views

Latest files of /deepika/to-do

check (1).png deepika/to-do/check (1).png
185 Views
0 Comments
Media file
to-do/checked.png deepika/to-do/checked.png
112 Views
0 Comments
Media file
to-do/close (2).png deepika/to-do/close (2).png
82 Views
0 Comments
Media file
to-do/index.css deepika/to-do/index.css
184 Views
0 Comments
*{
margin:0;
padding:0;
font-family: 'poppins', sans-serif;
box-sizing:border-box;
}
.container{
width:100%;
to-do/radio-button.png deepika/to-do/radio-button.png
127 Views
0 Comments
Media file
to-do/script.js deepika/to-do/script.js
179 Views
0 Comments
const inputBox=document.getElementById("input-box");
const listContainer=document.getElementById("list-container");
function addTask()
{
if(inputBox.value==='')
{
alert("you must write something!");
}
To Do List deepika/to-do/index.html
493 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>To-Do-List App</title>
</head>