<div>This is stuffed into the <body></div>
<p>Also this</p>
alert("yolo"); // this gets executued
.p { font-size: 12px; } /* and this gets put into a <style></style>
<html> | |
<head></head> | |
<body> | |
<div>This is stuffed into the <body></div> | |
<p>Also this</p> | |
<style> | |
.p { font-size: 12px; } | |
</style> | |
<script> | |
alert("yolo"); // this gets executued | |
</script> | |
</body> | |
</html> |