-
Notifications
You must be signed in to change notification settings - Fork 0
/
Firstpage(final).html
120 lines (114 loc) · 3.72 KB
/
Firstpage(final).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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>BITS bids : Log in</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
.bod{
background-color: rgb(118, 194, 229);
}
.container{
display: grid;
grid-template-columns: 650px 500px ;
}
#img{
translate: 20px;
image-resolution: 80px;
}
.text{
display: inline-block;
margin-top: 80px;
}
.image{
width: 200px;
margin-top: 0px;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
.bitsbids{
font-family: Montserrat, Helvetica, sans-serif;
margin-bottom: none;
font-weight: 800;
font-size: 95px;
margin-top: 0px;
padding-top: 0px;
margin-left: 80px;
margin-bottom: 20px;
padding-top: 0px;
}
.subtext{
font-family: Montserrat, Helvetica, sans-serif;
margin-left: 90px;
font-weight: 600;
padding-top: 0px;
padding-bottom: 5px;
font-size: 20px;
margin-bottom: 40px;
}
.boxcontainer{
display:grid;
grid-template-columns: 500px 300px ;
margin-top: 70px;
}
section{
font-family: Montserrat;
font-weight: bold;
background-color: rgb(255, 239, 134);
padding-right: 40px;
padding-top: 15px;
padding-left: 40px;
margin-bottom: 50px;
border: 3px solid black;
border-radius: 50px;
}
.google{
margin-left: 107px;
font-size: large;
font-family: Montserrat;
margin-bottom: 19px;
background-color: #0e3b5b;
border: none;
border-radius: 7px;
font-weight: bold;
color: white;
padding: 7px 15px;
margin-top: 0px;
transition: background-color 0.15s;
}
.google:hover{
cursor: pointer;
color: #0e3b5b;
background-color: white;
}
</style>
</head>
<body class="bod">
<div class="container">
<div class="text">
<p class="bitsbids">
BITS bids
</p>
<p class="subtext">
The best auction market for BITS students
</p>
<img id="img" src="https://www.khuddam.in/wp-content/uploads/2019/03/1200px-BITS_Pilani-Logo.svg.png" width="145px" alt="" style="vertical-align:middle;margin:15px 160px;margin-left: 210px;">
</div>
<div class="boxcontainer">
<section>
<form>
<p class="intro" style="font-size: large; margin-top: 5px; margin-bottom: 0; padding-bottom: 0;">
Selling made seamless. Easily auction your goods and get the best possible price!
</p>
<br>
<img class="image" src="BidCartoon.png">
<button class="google">Login with Google</button>
</form>
</section>
</div>
</div>
</body>
</html>