html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<head>
<title> My first Code </title>
</head>
<body>
<ol>
<li> <a href="https://www.google.co.in"> Click here </a> <li>
<li> Subhranshu </li>
<li> Subhranshu </li>
<li> Subhranshu </li>
</ol>
</body>
</html>
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
html {
margin: 0;
padding: 0;
}
body {
font-family: 'Handlee', cursive;
font-size: 13pt;
background-color: #efefef;
padding: 10px;
margin: 0;
}
h1 {
font-size: 15pt;
color: #20bcd5;
text-align: center;
padding: 18px 0 18px 0;
margin: 0 0 10px 0;
}
h1 span {
border: 4px dashed #20bcd5;
padding: 10px;
}
p {
padding: 0;
margin: 0;
}
.img-circle {
border: 3px solid white;
Enter to Rename, Shift+Enter to Preview
js
js
1
// no JS
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run