education-webapp / static /static.html
anmolmalik01's picture
M
1b6f001
raw
history blame contribute delete
No virus
862 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Buddy</title>
<link rel="stylesheet" href="../static/style.css" />
<script type="module" src="../static/script.js"></script>
</head>
<body>
<main>
<section id="text-gen">
<h1>Learning becomes easy</h1>
<form>
<p>Input your paragraph here</p>
<label for="text-gen-input"></label>
<input id="text-gen-input" type="text" placeholder="Enter your parargraph here" />
<button id="text-gen-submit">Submit</button>
</form>
</section>
<section>
<p class="text-gen-output"></p>
<ul>
<li><span>Foo</span></li>
<li><span>Bar</span></li>
<li><span>Bat</span></li>
</ul>
</section>
</main>
</body>
</html>