lehrkraefte:blc:informatik:ffprg1-2023:hello-html

This is an old revision of the document!


Hello World in HTML, CSS, JavaScript

Dateien vom Video

Dateien vom Video

hello.html
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf8">
        <title>Hallo HTML Fenstertitel</title>
        <link rel="stylesheet" href="hallo.css">
        <script src="hallo.js"></script>
    </head>
    <body>
        <h1>Hallo HTML Seitentitel</h1>
        Wie geht's?
    </body>
</html>
hello.css
h1 {
    color:red;
}
hello.js
console.log("Hello world from JavaScript!");
  • lehrkraefte/blc/informatik/ffprg1-2023/hello-html.1675246455.txt.gz
  • Last modified: 2023/02/01 11:14
  • by Ivo Blöchliger