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>
<!--This is the title of this Web Page-->
<title>Amit Raj</title>
<!--This is all the information about this
HTML document-->
<meta charset="UTF-8"/>
<meta name="keywords" content="text/html"/>
<meta name="description"content="My Personal
Online CV"/>
<meta name="author" content="Amit Raj"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--"This is a link to the external css file"
-->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!--The main heading-->
<h1>Amit Raj</h1>
<h4>(born on 21st of February, 1997)</h4>
<p>
<!--used pre tag to make the content visually decent-->
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 {
background-color: #444;
color: wheat;
}
h1 {
text-align:left;
text-shadow:5px 2px 4px black;
}
h2 {
text-align:left;
text-shadow:5px 2px 4px black;
}
pre {
Font-size:12pt;
font-family:"Arial";
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run