-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelp.html
More file actions
41 lines (41 loc) · 900 Bytes
/
help.html
File metadata and controls
41 lines (41 loc) · 900 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>help</title>
</head>
<style>
.main{
background-image: url(helpimg.jpg);
height: 600px;
width: 1200px;
background-size: cover;
}
.box1{
font-size:65px ;
margin-top: 20px;
margin-left: 20px;
}
button{
margin-left: 280px;
height: 40px;
width: 100px;
border-radius: 50px;
background-color: aqua;
}
button:hover{
background-color: blueviolet;
}
</style>
<body>
<div class="main">
<div class="box1">
Welcome ! <pre> Fit hub is for you</pre>
</div>
<h1><pre> How can i help you ?</pre></h1>
<pre> <textarea cols="40" rows="10" placeholder="enter your quiries"></textarea></pre>
<button>Submit</button>
</div>
</body>
</html>