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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1><u>Learn Java 2.0</u></h1>
<p>Learn Java 2.0 is the extension of Sololearn's Learn Java app. Click on any concept button below and you will be able to open a web code whose output explains you the respective concept. As I can't do everything by myself, you can write web codes explaining other concepts and post their URLs in the comment section. I will add a link to your code from here and give you proper credit.</p>
<input type="button" value="BigInteger" class="c"
onclick="window.open('https://code.sololearn.com/WS60ll19CFej/#html')"/>
<input type="button" value="BigDecimal" class="c"
onclick="window.open('https://code.sololearn.com/WoY0dwPZzSya/#html')"/>
<input type="button" value="Regular Expressions" class="c"
onclick="window.open('https://code.sololearn.com/Wz8LzX2ab94q/#html')"/>
<input type="button" value="BitSet" class="c"
onclick="window.open('https://code.sololearn.com/W3vyaGXhyfp9/#html')"/>
<input type="button" value="InetAddress" class="c"
onclick="window.open('https://code.sololearn.com/W87XENsXb25D/#html')"/>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
body {
background : black;
}
h1, p {
color : white;
}
.c {
width : 100%;
margin-top : 5px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run