Skip to main content

Posts

Showing posts from August, 2022

To-Do list Project

 To-do list Project in Javascript Program to create a to-do list project in HTML, CSS and Javascript. <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <title>To Do List</title> </head> <body>   <div style="margin-left: 20%; margin-right: 20%; margin-top: 5%">     <h1 align="center" style="color: Green; font-family: Lucida Console"> My Task List</h1>     <br>     <div class="row" align="center" style="border: 2px solid green ;  border-radius: 20px;  height: 15%;  width: 60%; margin-top: 20px; margin-left:20% ; margin-bottom: 3%; ">       <form>         <div class="input-group">           <input type="text" id="box" style="width:20vw;  height: 2vw; margin-top: 20px; border: none; border-bottom: 2px solid green" placeholder...
Digital Clock Project in Javascript Create a digital clock using HTML, CSS, and javascript. <html lang="en"> <head>   <meta charset="UTF-8">   <title>Digital Clock</title> </head> <body> <div style="margin-left: 20%;  margin-right: 20%; margin-top: 5%"; align: center;> <h1 align="center"  style="color: Green; font-size: 60px;  font-family: Gill Sans;"> Digital Clock </h1>     <div class="row" align="center" style="border: 2px solid green ; border-radius: 20px; height: 20%; width: 70%; margin-top: 20px; margin-left:10% ; margin-bottom: 3%; background-color: Green; ">        <h1 id="clock"  style=" font-family: Gill Sans; font-size: 60px;  align:center; color: White;"></h1>     </div> </div> <script type="text/javascript"...