-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (87 loc) · 3.46 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
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- link tailwind css -->
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>My personal assisten</title>
</head>
<body>
<nav class="container flex justify-around py-8 mx-auto">
<div class="flex items-center">
<h3 class="text-2xl font-medium text-rose-700">Assistent</h3>
</div>
<!-- left header section -->
<div class="items-center hidden space-x-8 lg:flex">
<a href="">Home</a>
<a href="">About Us</a>
<a href="">Blogs</a>
<a href="">Our Team</a>
<a href="">Contact Us</a>
</div>
<!-- right header section -->
<div class="flex items-center space-x-2">
<button class="px-4 py-2 text-blue-100 bg-rose-700 rounded-md">
Sign in
</button>
<button class="px-4 py-2 text-gray-200 bg-pink-700 rounded-md">
Sign up
</button>
</div>
</nav>
<section class="text-center">
<h1 class="text-4xl font-semibold text-pink-600 mt-14">Your personal Assistent</h1>
<img onclick="recogniton.start()" class="mx-auto mt-14 image" src="animation.gif" alt="">
<h4 id="my-voice"></h4><br>
<h4 id="her-voice"></h4>
<h5 class="mt-10 text-rose-600">Click and speak</h5>
</section>
<footer class="bg-gray-100 text-center mt-20">
<div class="px-6 pt-6">
<form action="">
<div class="grid md:grid-cols-3 gird-cols-1 gap-4 flex justify-center items-center">
<div class="md:ml-auto md:mb-6">
<p class="text-gray-800">
<strong>Sign up for our newsletter</strong>
</p>
</div>
<div class="md:mb-6">
<input
type="text"
class="
form-control
block
w-full
px-3
py-1.5
text-base
font-normal
text-gray-700
bg-white bg-clip-padding
border border-solid border-gray-300
rounded
transition
ease-in-out
m-0
focus:text-gray-700 focus:bg-white focus:border-blue-600 focus:outline-none
"
id="exampleFormControlInput1"
placeholder="Email address"/>
</div>
<div class="md:mr-auto mb-6">
<button type="button" class="inline-block px-6 py-2.5 bg-rose-700 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out">Subscribe</button>
</div>
</div>
</form>
</div>
<div class="text-center text-gray-700 p-4">
<p class="opacity-50">© 2021 Copyright by Ashikul islam ifty</p>
</div>
</footer>
<script src="assistent.js"></script>
</body>
</html>