adnaan05 KhaqanNasir commited on
Commit
e213c5e
·
verified ·
1 Parent(s): 7bb7bdc

Update index.html (#3)

Browse files

- Update index.html (55ca0b15c2edfaf24b6e9753d62f4184a38f2e87)


Co-authored-by: Muhammad Khaqan Nasir <[email protected]>

Files changed (1) hide show
  1. index.html +41 -1
index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!doctype html>
2
  <html>
3
  <head>
4
  <meta charset="utf-8" />
@@ -17,3 +17,43 @@
17
  </div>
18
  </body>
19
  </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!-- <!doctype html>
2
  <html>
3
  <head>
4
  <meta charset="utf-8" />
 
17
  </div>
18
  </body>
19
  </html>
20
+ -->
21
+
22
+
23
+
24
+
25
+
26
+ <!DOCTYPE html>
27
+ <html lang="en">
28
+ <head>
29
+ <meta charset="UTF-8">
30
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
31
+ <title>TrueCheck - Fake News Detection</title>
32
+ <link rel="stylesheet" href="style.css">
33
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
34
+ </head>
35
+ <body>
36
+ <div class="hero-section">
37
+ <div class="hero-content">
38
+ <div class="hero-text">
39
+ <h1>TrueCheck</h1>
40
+ <p>Detect fake news with our advanced AI-powered system using BERT, BiLSTM, and Attention mechanisms.</p>
41
+ <a href="https://huggingface.co/spaces" class="btn" target="_blank">Visit App</a>
42
+ </div>
43
+ <div class="hero-image">
44
+ <img src="https://img.freepik.com/free-vector/fake-news-concept-illustration_114360-3189.jpg" alt="Fake News Detection">
45
+ </div>
46
+ </div>
47
+ </div>
48
+ <div class="container">
49
+ <h2>About TrueCheck</h2>
50
+ <p>TrueCheck uses a hybrid deep learning model combining:</p>
51
+ <ul>
52
+ <li>BERT for contextual embeddings</li>
53
+ <li>BiLSTM for sequence modeling</li>
54
+ <li>Attention mechanism for interpretability</li>
55
+ </ul>
56
+ <p>Explore more about our project in the <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.</p>
57
+ </div>
58
+ </body>
59
+ </html>