-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (77 loc) · 2.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blogging App</title>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/responsive.css" />
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Page Loader -->
<div id="center">
<div class="loader"></div>
</div>
<div id="page">
<!-- header start -->
<header>
<!-- navbar start -->
<nav class="navbar container-fluid">
<a href="/">
<h1>Blogging App</h1>
</a>
<div>
<a class="login_signup" href="./screen/dashboard.html">Dashboard</a>
<a class="login_signup" id="userName"></a>
<a class="login_signup" id="loginBtn" href="./screen/login.html">Login</a>
<a class="login_signup" id="logoutBtn">Logout</a>
</div>
</nav>
<!-- navbar end -->
<div class="container-fluid page-title">
<!-- greeting for users -->
<h1 class="greetings" id="greetings">Welcome Readers!</h1>
</div>
</header>
<!-- header end -->
<!-- main start -->
<main class="container-fluid">
<h2>All Blogs</h2>
<section class="post-container">
<div class="post-card">
<div class="post-info">
<img src="assets/images/writer-dp.png" alt="Elon Musk" class="author-dp" />
<div>
<h3 class="post-title">Introducing Whisper</h3>
<div class="post-author">
<span>Elon Musk - August 17th, 2023</span>
</div>
</div>
</div>
<div class="post-content">
Whisper is an automatic speech recognition (ASR) system trained on
680,000 hours of multilingual and multitask supervised data
collected from the web. We show that the use of such a large and
diverse dataset leads to improved robustness to accents,
background noise and technical language. Moreover, it enables
transcription in multiple languages, as well as translation from
those languages into English. We are open-sourcing models and
inference code to serve as a foundation for building useful
applications and for further research on robust speech processing.
</div>
<a href="./screen/author-page.html">See all from this user</a>
</div>
</section>
</main>
</div>
<!-- main end -->
<!-- javascript -->
<script src="assets/js/main.js" type="module"></script>
<script src="assets/js/index.js" type="module"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</body>
</html>