Things we are going to discuss :
What is html ?
HyperText Markup Language
What is css ?
Cascading Style Sheets
div {
width: 200px;
height: 200px;
background-color: red;
}
.class-name {
width: 150px;
border: 1px solid blue;
}
#some-id {
height: 200px;
background-color: #00ffdd;
}HTML Layout
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<div>
<p>
this is a test
</p>
</div>
<script src="dist/scripts/main.js"></script>
</body>
</html>HTML elements
<tagname>Content goes here...</tagname>HTML elements
Basic concepts
No more theory