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>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<section id="header">
<div id="title">
<div class="main">Contest List</div>
<div class="countdown">
Closing in
<span class="days"></span> Days:
<span class="hours"></span>:
<span class="mins"></span>:
<span class="secs"></span>
</div>
</div>
<div id="sub-title">
<div class="left">Codes</div>
<div class="right">Score</div>
<div class="clearfix"></div>
</div>
</section>
<section id="board">
<table id="ctable"></table>
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
body {
font-family: 'Roboto', sans-serif;
width: 100%;
color: #fff;
transition: all .5s;
background: #eee;
}
#name {
text-transform:capitalize;
}
#header {
width: 100%;
}
/* green theme */
#title {
background: #0097D5;
height: 50px;
width: 100%;
color: #eee;
}
#title .main {
font-size: 1.5em;
Enter to Rename, Shift+Enter to Preview
js
js
1
alert('This is a testing app that try to display live contest list of Sololearn.\n\n\(Click the user icon to go to the selected code\)\n\nTesting link: https://www.sololearn.com/Discuss/507479')
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run