-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.8 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
<html>
<head>
<title>Hejex-Task-List</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<style>
.listA >li >a{
background-color: orange;
color: black;
margin-bottom: 10px;
padding:8px 18px;
font-size: 16px;
font-weight: 600;
border-radius: 10px;
}
.listA > li :hover{
background-color: black;
color: white;
}
ul{
list-style-type: none;
padding-inline-start:0;
}
</style>
<body>
<h2>Task link</h2>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4"></div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<ul class="listA">
<li> <a href="If folder/if.html" class="btn btn-block">if-else</a> </li>
<li> <a href="Switch/switch.html" class="btn btn-block">Switch</a> </li>
<li> <a href="Loop/Loop.html" class="btn btn-block">loop</a> </li>
<li> <a href="Function/Function.html" class="btn btn-block">function</a> </li>
<li> <a href="" class="btn btn-block">CRUD object</a> </li>
</ul>
</div>
</div>
</div>
</body>
</html>