-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.36 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 1.36 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
<!DOCTYPE html>
<head>
<!--
Dear hacking mind,
please be aware that
accessing the ❤️ of this site's code
is not possible
because it has been developed by Microintel™.
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CIE</title>
<style type="text/css">
body {
background-color: black;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
height: 100vh;
}
button {
margin-top:50%;
height: 50px;
width: 150px;
background-color: orange;
border: 2px solid white;
border-radius: 10px;
color: black;
font-size: 20px;
transition: 0.5s;
margin-right: 10px;
}
button:hover {
background-color: #FFD700;
border: 2px solid black;
transform:scale(1.1);
}
</style>
</head>
<body>
<div id="md">
<div id="sd1">
<button onclick="location.href='https://microintel.github.io/cie/index1.html'">1 - 4th sem</button>
<button>5th sem</button>
</div>
</div>
</body>
</html>