File size: 1,691 Bytes
04f58a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SentimentSpark - Sentiment Analysis Dataset</title>
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
    <!-- Custom CSS -->
    <link rel="stylesheet" href="styles.css">
</head>
<body class="bg-dark text-light">
    <div class="container py-5">
        <h1 class="text-center mb-4">πŸŒ‘ SentimentSpark</h1>
        <p class="text-center mb-5">Explore our sentiment analysis dataset with a sleek, dark-themed interface. πŸ”₯</p>

        <!-- Filter Controls -->
        <div class="mb-4">
            <label for="sentimentFilter" class="form-label">Filter by Sentiment:</label>
            <select id="sentimentFilter" class="form-select bg-dark text-light border-secondary">
                <option value="all">All</option>
                <option value="positive">Positive</option>
                <option value="negative">Negative</option>
            </select>
        </div>

        <!-- Data Table -->
        <table class="table table-dark table-hover">
            <thead>
                <tr>
                    <th>Index</th>
                    <th>Text</th>
                    <th>Label</th>
                </tr>
            </thead>
            <tbody id="dataTable"></tbody>
        </table>
    </div>

    <!-- Bootstrap JS and Popper.js -->
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    <!-- Custom JavaScript -->
    <script src="script.js"></script>
</body>
</html>