-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.html
More file actions
76 lines (66 loc) · 1.93 KB
/
main.html
File metadata and controls
76 lines (66 loc) · 1.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="logo.jpg" type="image/x-icon">
<title>DiscoverF</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
.s img {
border-radius: 50%;
}
</style>
<body>
<header>
<div class="s">
<img src="logo.jpg" width="200px">
</div>
<div>
<h1>DiscoverF</h1>
</div>
</header>
<br>
<br>
<br>
<br>
<br>
<hr class="hr">
<div class="links">
<h4><a href="#">About</a></h4><br>
<h4><a href="#">Peoples Review</a></h4><br>
<h4><a href="#">Contact Us</a></h4>
</div>
<div class="forms">
<form action="#">
<input type="text" placeholder="Mobile Number or Email"><br>
<br>
<input type="text" placeholder="Full Name"><br>
<br>
<input type="email" placeholder="Username"><br>
<br>
<input type="password" placeholder="Password"><br>
<br>
<button class="btn" type="submit">Sign up</button> <br>
<h3>By signing up, you agree to our Terms,</h3>
<h3>Data Policy and Cookies Policy .</h3>
<div class="login">
<h3>Have an account <a href="#">Login</a></h3>
</div>
</form>
</div>
<div class="rightside">
<img src="logo.jpg">
<h3> Company-name:DiscoverF <br><br> Established:2019 <br><br> Founder:Sarvesh Pathak</h3>
</div>
<br>
<footer>
<div class="footer">
<hr>
<h3 align="center">DiscoverF 2020</h3>
</div>
</footer>
</body>
</html>