-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added index.html, notepad.html, Placeholder in place
- Loading branch information
Umesh Kumarasamy
committed
Apr 2, 2024
1 parent
d47648b
commit 4168e94
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" | ||
/> | ||
</head> | ||
<body> | ||
<a href="notepad.html">A Judgemental Scrap Pad</a> | ||
<p> | ||
A notepad that works pretty much like a scrap paper except it judges you | ||
if you write poorly. | ||
</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" | ||
/> | ||
</head> | ||
<body> | ||
<h2>Type what you will</h2> | ||
<label>Passage</label> | ||
<progress class="progress" value="2" max="100"></progress> | ||
<div class="control"> | ||
<textarea | ||
class="textarea is-hovered" | ||
placeholder="Normal textarea" | ||
rows="23" | ||
></textarea> | ||
<div class="buttons"> | ||
<button class="button is-primary">Do It!</button> | ||
<button class="button is-danger">or not</button> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |