html
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
<html>
<head> <title>table and list </title>
<style>
</style>
</head>
<body>
<h2>tutorial site list</h2>
<ul>
<li><a href="#">all</a>
<table>
<tr>
<td><a href="https://play.google.com/store/apps/details?id=com.mrsoftbd.webdesignlearnoffline">web design</a></td>
<td><a href="https://play.google.com/store/apps/details?id=com.webdevelopment">web development</a></td>
<td><a href="https://play.google.com/store/apps/details?id=everyneedz.com.webdevelopment">web development</a></td>
</tr>
<tr>
<td><a href="https://play.google.com/store/apps/details?id=com.freeit.java">learn to code</a></td>
<td><a href="https://play.google.com/store/apps/details?id=learn.web.php">learn web development</a></td>
<td><a href="https://play.google.com/store/apps/details?id=com.app.superdeveloper.webcs.schoolofcode">code school</a></td>
</tr>
<tr>
<td><a href="https://play.google.com/store/apps/details?id=com.kashap.advwm">advansed</a></td>
<td><a href="https://play.google.com/store/apps/details?id=com.unacademyapp">unacademy</a></td>
<td><a href="https://play.google.com/store/apps/details?id=com.arifhossen.webdeveloperinterviewquestions">web developer interview</a></td>
</tr>
<tr>
<td><a href="https://play.google.com/store/apps/details?id=com.orientsofts.w3schoolallinoneoffline">w3school</a></td>
Enter to Rename, Shift+Enter to Preview
css
css
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
*{
box-sizing:border-box;
}
body{
width:100%;
height:100%;
margin:0px;
padding:0px;
background-color:/*rgb(255,0,255)*/#000;
}
h2{
color:rgb(255,0,255)/*#fff*/;
font-weight:bold;
text-transform:capitalize;
text-align:center;
}
ul{
width:100%;
margin:0%;
padding:1%;
}
table{
display:none;
width:96%;
height:96%;
background-color:/*rgb(255,0,255)*/#000;
overflow:scroll;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run