Test / app /templates /index.html
adarshadda's picture
edited app.py
4b5f136
raw
history blame contribute delete
No virus
1.51 kB
<!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>