-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.71 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>HTML and CSS</h1>
<h3>Basic HTML inital day steps</h3>
<div>
<h4>Initial intro</h5>
<ul>
<li>Front end is the code that runs client side</li>
<li>Back end is the code that runs server side</li>
<li>Introduce the sections used to create a website:
<ul>
<li><b>HTML</b> - creating content</li>
<li><b>CSS</b> - styling the HTML</li>
<li><b>Javascript</b> - making the page interactive</li>
</ul>
</li>
<li>Latest versions of these:
<ul>
<li>HTML 5</li>
<li>CSS 3</li>
</ul>
</li>
</ul>
</div>
<div>
<h4>Start coding</h4>
<ul>
<li>Open Visual Studio</li>
<li>Download Live Server - do within VSCode</li>
<li>Load terminal in VSCode create a directory and cd in</li>
<li>Use touch to make a file called index.html</li>
<li>Right click index.html and Open in Live Server</li>
<li>Make sure to leave this tab open as everytime we save it will update</li>
<li>Go over basics or angle brackets</li>
<li>Within index.html and type ! - this should load this HTML</li>
</ul>
<img src="originalHTML.png">
</div>
</body>
</html>