-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (36 loc) · 1.78 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="css/app.css">
<script src="//unpkg.com/brain.js"></script>
<title>Emotion Detector App</title>
</head>
<body class="d-flex justify-content-center align-items-center">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-12 col-lg-6">
<div class="input-group mb-3">
<input id="inputBox" type="text" class="form-control" placeholder="Type Something..."
aria-label="Type Something..." aria-describedby="button-addon2">
<button class="btn btn-outline-primary" type="button" id="button-addon2">Detect</button>
</div>
<div class="card d-flex justify-content-center align-items-center">
<div id="NetworkDiag" class="card-img-top"></div>
<div class="card-body" id="cardBox">
<p class="card-text">Give me some Challenge 🤖...
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/rawData/trainingDataSet.json"></script>
<script src="js/app.js"></script>
</body>
</html>