-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (81 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<style>
html{
font-size: small;
}
body {
/* Set a background color that will be displayed
while the background image is loading */
background-image: url("https://images.unsplash.com/photo-1587826080692-f439cd0b70da?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60");
background-color: #464646;
}
*{
color: whitesmoke;
font-size: small;
}
.container{
background-color: black;
border: solid 2px purple;
display: flex;
flex-wrap: wrap;
width: 95%;
height: auto;
margin: auto;
padding-top: 1rem;
padding-bottom: 1rem;
border-radius: 25px;
justify-content: center;
justify-content: space-around;
align-items: center;
}
.box{
/* border: solid 2px whitesmoke; */
margin: auto;
text-align: center;
}
a{
text-decoration: none;
}
a:hover{
color: rgb(62, 236, 9);
zoom: 110%;
}
span:hover{
color: rgb(62, 236, 9);
}
.ima1{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/* .box:hover{
border: solid 2px rgb(59, 5, 184);
} */
</style>
</head>
<body>
<div class="container">
<div id="box1" class="box"><a href="/flex.html">HOME</a>
</div>
<div id="box2" class="box"><a href="https://zpnilgavhan.github.io/basic.io/">Contact Us</a>
</div>
<div id="box3" class="box"><a href="http://bit.ly/2YxWsLv" target="blank">Apply Online</a>
</div>
<div id="box4" class="box"><a href="https://zpnilgavhan.github.io/basic.io/">About Us</a>
</div>
<div id="box4" class="box">
<a href="/flexM.html">मराठीत बघा
</a>
</div>
<!-- <div class="ima1">
<div>
<img src="/bgimg4.jpg">
</div>
</div> -->
</body>
</html>