changed class name & <head> content of index.html

This commit is contained in:
unknown 2022-12-17 21:14:16 +07:00
parent 1e54208f0a
commit 1f1ce9fc50

View file

@ -1,35 +1,37 @@
<!doctype html> <!doctype html>
<html> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="description" content="A very simple notepad that you can use.">
<meta name="author" content="westtle"> <meta name="author" content="westtle">
<meta name="description" content="A very simple notepad that you can use.">
<meta name="keywords" content="notepad, note, notepad online, simple note, simple notepad">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple Note</title> <title>Simple Note</title>
<link rel="icon" type="image/x-icon" href="#">
<link rel="stylesheet" type="text/css" href="assets/styles/style.css"> <link rel="stylesheet" type="text/css" href="assets/styles/style.css">
</head> </head>
<body> <body>
<main> <main>
<div id="simple-note"> <div id="simple-note">
<div class="note-title"> <div class="__title">
<input type="text" placeholder="Title"> <input type="text" placeholder="Title">
</div> </div>
<div class="note-text"> <div class="__body">
<textarea placeholder="Your text here."></textarea> <textarea placeholder="Your text here."></textarea>
</div> </div>
<div class="note-function"> <div class="__function">
<button class="select-all-text">Select all</button> <button class="_select-all">Select all</button>
<button class="delete-all-text">Delete all</button> <button class="_delete-all">Delete all</button>
<!-- Appear when clicked. --> <!-- Appear when clicked. -->
<span class="delete-choices hidden"> <span class="_delete-choices hidden">
<span>Are you sure?</span> <span>Are you sure?</span>
<button class="yes-delete">Yes</button><button class="no-delete">No</button> <button class="yes-delete">Yes</button><button class="no-delete">No</button>
</span> </span>
<!-- ------------------- --> <!-- ------------------- -->
<button class="save-to-local">Save to local</button> <button class="_save-to-local">Save to local</button>
</div> </div>
</div> </div>
</main> </main>