-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (90 loc) · 2.59 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Re-directions</title>
<style>
body{
background-image: url(https://i.gifer.com/81mk.gif);
display: flex;
justify-content: center;
align-items: center;
background-repeat: no-repeat;
background-size: cover;
flex-direction: column;
margin: 0px;
}
.main{
background-color: rgba(127, 255, 212, 0.850);
width: 40%;
height: 900px;
margin: 30px ;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.inside{
display: flex;
justify-content:flex-end;
align-items: flex-end;
width: 100%;
height :38px;
background-color: rgb(84, 84, 84);
}
#btn1{
border-radius: 10px;
background-color: rgba(14, 204, 234, 0.449);
padding: 8px;;
}
#btn2{
border-radius: 10px;
background-color: rgba(14, 234, 47, 0.449);
padding: 8px;;
}
#btn3{
border-radius: 10px;
background-color: rgba(205, 234, 14, 0.619);
padding: 8px;;
}
#btn4{
border-radius: 10px;
background-color: rgba(0, 194, 233, 0.86);
padding: 8px;;
}
</style>
<script>
function colors(col){
document.getElementById("main").style.background=col;
}
</script>
</head>
<body>
<div class="main" id="main">
<h1 >Repository Map</h1>
<list>
<ol>
<li>HTML</li>
<ul>
<li><a href="https://yadhukrishnx.github.io/Learningfest/HTML/HOST/index.html">Final Task</a></li>
</ul>
<li>Css</li>
<ul>
<li><a href="https://yadhukrishnx.github.io/Learningfest/CSS/Task15/Task15.html">Final Task</a></li>
</ul>
<li>Bootstrap</li>
<ul>
<li><a href=" https://yadhukrishnx.github.io/Learningfest/BOOTSTRAP/Task6/index.html">Final Task</a></li>
</ul>
</ol>
</list>
</div>
<div class="inside">
<input type="button" value="Change color " id="btn1" onclick="colors('rgba(14, 204, 234, 0.850)')">
<input type="button" value="Change color " id="btn2" onclick="colors('rgba(14, 234, 47, 0.849)')">
<input type="button" value="Change color " id="btn3" onclick="colors('rgba(205, 234, 14, 0.850)')">
<input type="button" value="Change color " id="btn3" onclick="colors('rgba(0, 194, 233, 0.860)')">
</div>
</body>
</html>