File size: 790 Bytes
032092c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// index.js
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Transformer Sentiment Analyzer</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <header>
    <h1>Transformer Sentiment Analyzer</h1>
  </header>
  <main class="container">
    <form id="analyze-form">
      <label for="inputText">Enter text to analyze:</label>
      <textarea id="inputText" name="inputText" rows="4" placeholder="Type your text here..." required aria-required="true"></textarea>
      <button type="submit" id="analyzeButton">Analyze Sentiment</button>
    </form>
    <section id="result" aria-live="polite"></section>
  </main>
  <script type="module" src="index.js"></script>
</body>
</html>