forked from ndvtechsyssolutions/Internships
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes
More file actions
64 lines (45 loc) · 1.08 KB
/
notes
File metadata and controls
64 lines (45 loc) · 1.08 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
53
54
55
56
57
58
59
60
61
62
63
64
Install editors
----------------
1. fullstack is visual studio code
front end + back end
2. eclipse
web fundaments
------------------
html
css
js
how to install vs code in your OS
--------------------------------------
open browser -> search for vscode
download based on your OS
after downloading file -> double click on file
install for you
after install start vs code
HTML
-------
Hyper text markup language
HTML files are saved with .html format
html files will run with browser
(chrome,firefox,safari,opera...)
html is not programming lang
html just a markup lang
html used for design web pages
html is collection of predefined tags
html tags are two types
--------------------------
1. paired tags
<opentag> content </closetag>
<p> para content </p>
2. un paired tags
-> only open : <opentag>
-> only close : </closetag>
-> self close : <self close/>
html page should have structure
html file starts with html tag
<html>
</html>
html divides into two sections
<html>
<head> </head>
<body> </body>
</html>