simple-note/index.html

31 lines
No EOL
1.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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">
<title>Simple Note</title>
<link rel="icon" type="image/x-icon" href="#">
<!-- <link rel="stylesheet" type="text/css" href="assets/styles/style.min.css"> -->
</head>
<body>
<main>
<section class="simple-note">
<h1 class="simple-note__heading">Simple Note</h1>
<div class="simple-note__inputs">
<input class="simple-note__input simple-note__input--title" type="text">
<textarea class="simple-note__input simple-note__input--body">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Atque amet veniam nulla quia harum explicabo.</textarea>
</div>
<div class="simple-note__buttons">
<button class="simple-note__button simple-note__button--one">Button 1</button>
<button class="simple-note__button simple-note__button--two">Button 2</button>
</div>
</section>
</main>
<!-- <script type="text/javascript" src="assets/scripts/script.min.js"></script> -->
</body>
</html>