Skip to content

Commit

Permalink
fixed divs
Browse files Browse the repository at this point in the history
  • Loading branch information
klortiz13 authored Apr 7, 2024
1 parent 9e1c156 commit d558c36
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- Announcements section -->
<h1>📢Announcements</h1>
<div id="announcements">
<textarea placeholder="Write Announcement"></textarea>
<textarea placeholder="Write an announcement" rows="4" cols="50"></textarea>
</div>
<!-- Timer Section -->
<h2>Timer</h2>
Expand All @@ -23,8 +23,10 @@ <h2>Timer</h2>
<button onclick="stopTimer()">Stop</button>
</div>
<!-- Notes/Typos section -->
<h3>Notes/Typos</h3>
<textarea id="notes"></textarea>
<h3>✏️Notes/Typos</h3>
<div id="notes">
<textarea placeholder="Write a note" rows="4" cols="50"></textarea>
</div>
</div>
<!-- Scripts go here (created one for timer) -->
<script src="timer.js"></script>
Expand Down

0 comments on commit d558c36

Please sign in to comment.