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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Useful articles and thoughts</title>
<p>Check out</p>
<style>
.Style{
border: 2px solid mediumspringgreen;
padding: 5px;
color: whitesmoke;
background-color:black
}
.margin{
margin-top: 20px;
}
</style>
</head>
<body>
<ol>
<li ><a class="Style" target="_blank" href="https://www.amazon.in/dp/B08HS9P4GD/ref=cm_sw_r_wa_awdo_t1_UxLwFbMTMQ3PP">Website</a></li>
<li class="margin" ><a class="Style" target="_blank" href="https://play.google.com/store/apps/details?id=com.amazon.kindle">Kindle version</a></li>
</ol>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run