html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="semester1div" class="margin"><p class="margin2">1. Semester</p></div>
<div id="semester2div" class="margin"><p class="">2. Semester</p></div>
<div id="semester3div" class="margin"><p class="margin4">3. Semester</p></div>
<div id="semester6div" class="margin"><p>6. Semester</p></div>
</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
body {
}
.margin{
border-radius: 12px;
margin-left: 20%;
margin-right: 20%;
margin-bottom: 10pt;
padding-top: 30pt;
padding-bottom: 0pt;
padding-top:0pt;
text-align: center;
font-size: 24pt;
font-style: oblique;
color: aliceblue;
border:1;
border-style: solid;
border-color: blue;
background-color: royalblue;
}
.margin2{
border-radius: 12px;
margin-left: 20%;
margin-right: 20%;
margin-bottom: 0pt;
margin-top: 0pt;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run