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>My Blog</title>
<link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
</head>
<body>
<!-- My Schedule section start -->
<div class="section">
<h1><span>RAMADAN CALENDER</span></h1>
<table>
<tr>
<th class="head">ramadan</th>
<th class="head">DAY</th>
<th class="head">DATE</th>
<th class="head">SEHR</th>
<th class="head">IFTAAR</th>
</tr>
<tr>
<td>1st</td>
<td>sun</td>
<td>may 28</td>
<td>04:16</td>
<td>07:16</td>
</tr>
<tr>
<td>2nd</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
html {
margin: 0;
padding: 0;
}
body {
font-family: 'Handlee', cursive;
font-size: 13pt;
background-color: #efefef;
padding: 20px;
margin: 10;
}
h1 {
font-size: 15pt;
color: #333def;
text-align: center;
padding: 18px 0 18px 0;
margin: 0 0 10px 0;
}
h1 span {
border: 4px dotted #9922ef;
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