File size: 862 Bytes
53dc870
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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>