http://
https://
<bold>
<italic>
<font>
font-weight: bold ;
font-style: italic ;
<center>
text-align: center
< width=50px height=30px >
width: 50px ;
height: 30px ;
<a href="javascript:...">
<a href="#" onclick="..." >
<table>
<div>
<br />
<p>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"...
<!DOCTYPE html>
<style type="text/css" ...
<style>
<script language="JavaScript" ...
<script>
a {
color: hsla( 180, 100%, 50%, 1 ) ;
}
a {
color: hsl( 180 100% 50% / 1 ) ;
}
#news {
width: 100%
}
#news .headline {
font-size: 4em ;
}
#news {
width: 100%;
.headline {
font-size: 4em ;
}
}
document.getElementById( "grumpy" )
document.getElementsByTagName( "cat" )
document.getElementsByClassName( "img" )
document.querySelector( "#grumpy" )
document.querySelectorAll( ".cat" )
document.querySelectorAll( "img" )
"string " + variable + " string"
`string ${variable} string`
for ( let counter = 0; counter < pets.length ; counter++ ) {
alert( pets[counter] ) ;
}
pets.forEach(
pet => alert( pet ) ;
)
function closePanel() = {...} ;
closePanel = function() = {...} ;
const closePanel = () => {...} ;
/