-
Notifications
You must be signed in to change notification settings - Fork 0
/
structure.html
30 lines (24 loc) · 936 Bytes
/
structure.html
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
<!DOCTYPE html> <!-- we are telling the browser that this is an html file-->
<html lang="en">
<head>
<!-- contains meta tags which describes the websites-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidharth</title>
</head>
<body>
Welcome here!
</body>
</html>
<!--
HTML
-> hypertext markup language
-> a statndard markup language for giving a static skeleton to web applications and websites.
CSS
-> cascading style sheets
-> style sheet language that is used to handle the presentation of the web page containing HTML.
JS
-> javascript, a high-level dynamically interpreted programming language.
-> allows client side scripting to create completely dynamic web applications and websites. (client side scripting language.)
-->