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>
</head>
<body>
<h1>Roadmap to Become Front End Developer</h1>
<h2><span>By: Kundan Patil</span></h2>
<table border=1>
<tr>
<th>No</th>
<th>Days</th>
<th>Courses</th>
<th>Resource</th>
</tr>
<tr>
<td>1</td>
<td>1-6</td>
<td>HTML</td>
<td>html.com</td>
</tr>
<tr>
<td>2</td>
<td>7-15</td>
<td>CSS</td>
<td>css.tricks.com</td>
</tr>
<tr>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
table {
border-collapse:collapse ;
width:100%;
}
td {
border: 1px solid black;
padding:;
}
th ,span ,h1 ,h2
{
background-color: #2493df;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
alert ("Remember Consistency is key of Success")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run