As a beginner in the world of coding, my goal is to create a time management website specifically tailored for school use. Despite copying this code multiple times, I have encountered an issue where it does not continue down the page, and I am unsure of the reason behind this sudden halt.
<html>
<style>
.title {
text-align: center;
font-size: 45px;
color: #b72121;
}
</style>
<header>
<title>ManageMe</title>
</header>
<body>
<div>
<h1 class= "title"> ManageMe </h1>
<font face = "Times New Roman" size = "7">Next 7 Day Outlook</font><br />
<div>
<h2> Today <span class= "june13">June 13</span></h2>
<div class="line1">
<div>
<br />
<div id= "bonus" />
<input id= "first" type="text" name="firstname" value="Enter Task Here">
<br />
<div>
<button class="button" onclick ="addtask()"> Add Task </button>
<div id="div">
<div>
<h2 class= "tom"> Tomorrow <span class= "june14">June 14</span></h2>
<div class="line2">
<div>
<div>
<br />
<div id= "bonus1" />
<input id= "first1" type="text" name="firstname" value="Enter Task Here">
</div>
<button class="button1" onclick ="addtask1()"> Add Task </button>
</div>
<div>
<h2> Satuday <span class= "june14">June 15</span></h2>
<div class="line3">
<div>
<div>
<br />
<div id= "bonus2" />
<input id= "first2" type="text" name="firstname" value="Enter Task Here">
</div>
<button class="button2" onclick ="addtask2()"> Add Task </button>
<div>
<div>
<h2> Sunday <span class= "june16">June 16</span></h2>
<div class="line4">
<div>
<div>
<br />
...
Identifying the problematic part within the code snippet:
<div>
<div>
<h2>Sunday <span class= "june16">June 16</span></h2>
<div class="line4">
<div>
<div>
<br/>
<div id= "bonus3" />
<input id= "first3" type="text" name="firstname" value="Enter Task Here">
</div>
<button class="button3" onclick ="addtask3()">Add Task</button>
</div>
</div>
</div>
</div>
Seeking assistance with the functionality that allows for adding tasks on a given day. Additionally, I aim to implement priority levels using colors but lack the know-how. Any guidance or support is greatly appreciated as I embrace learning the basics of coding. Thank you!