Welcome to UI Programming 23-24
Looking forwards to working with you this semester
This is a big module:
https://codeberg.org/UI-Programming-23-24/UI-Programming-Module-Labs

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Colm ONeill">
<title>UI Programming 23 24</title>
<link href="assets/css/screen.css" rel="stylesheet" text="text/css">
</head>
<body>
<h1>Hello world</h1>
<section>
This text is placed within a HTML5 tag called <pre><section></pre>
</section>
<script src="assets/js/script.js"></script>
</body>
</html>
<script src="assets/js/script.js"></script>
Be a ‘good citizen’, organise your files properly
.
├── assets
│ ├── css
│ │ └── screen.css
│ ├── fonts
│ ├── imgs
│ └── js
│ └── script.js
└── index.html
and include:
console.log("Hello World!");
let a = 10;
let b = 20;
if(a > b){
console.log("a is bigger");
}
if(a < b){
console.log("a is smaller");
}
console.log("hello again");
Looking at the console, debugging and the DOM