File size: 1,505 Bytes
b0dd51d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4b5f136
b0dd51d
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <link rel="stylesheet" href="/static/styles.css" />
  <link rel="preconnect" href="https://fonts.googleapis.com" />
  <link rel="stylesheet" type="text/css" href="/static/main.css">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet" />
  <title>My Website</title>
</head>
<body>
  <header>
    <nav>
      <p class="title">Mood Based Music Recommendation System</p>
    </nav>
  </header>
  <main>
    <section class="text-gray-700 body-font flex flex-col items-center justify-center min-h-screen">
      <div class="container mx-auto">
        <div class="flex flex-col w-full md:w-1/2 mx-auto">
            <h1 class="title-font" id="title">Welcome to Embrace Your Mood !!</h1>
            <p class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900 animate-pulse">
                  "The power of words can inspire, uplift, and transform."  </p>
          <form action="/audio_to_text/">
            <button class="inline-flex text-white button-primary border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Enter</button>
          </form>
        </div>
      </div>
    </section>
  </main>
  <footer>
    <p>&copy; 2023 My Website</p>
  </footer>
</body>
</html>