Skip to content

Commit

Permalink
Added index.html, notepad.html, Placeholder in place
Browse files Browse the repository at this point in the history
  • Loading branch information
Umesh Kumarasamy committed Apr 2, 2024
1 parent d47648b commit 4168e94
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
16 changes: 16 additions & 0 deletions index.html
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>
25 changes: 25 additions & 0 deletions notepad.html
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>

0 comments on commit 4168e94

Please sign in to comment.