File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
6+ < title > Document</ title >
7+ </ head >
8+ < body >
9+ < p > Hey</ p >
10+
11+
12+ < script >
13+ console . log ( "hey" ) ;
14+ </ script >
15+ < script src ="./some.js ">
16+ </ script >
17+
18+ </ body >
19+
20+
21+ </ html >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
7+ < title > Document</ title >
8+ </ head >
9+ < body >
10+ < script >
11+ var first = 'mark' ; //variable
12+ let age = 300 ;
13+ const cool = true ;
14+ console . log ( first ) ;
15+ console . log ( age ) ;
16+ console . log ( cool ) ;
17+ </ script >
18+ </ body >
19+ </ html >
You can’t perform that action at this time.
0 commit comments