SCIE.PRO Week 1 Seminar
What is Web?
Is this the web?
<html> <head> <title>Hello World!</title> </head> <body> <h2> Test html </h2> <p> lorem ipsum </p> </body> </html>
lorem ipsum
body, html { margin: 0; padding: 0; } div { font-style: italic; color: red; background: yellow; }
function add(a, b) { "use strict" console.log(`Adding ${a} ${b}`) return a + b; }