-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.96 KB
/
index.html
File metadata and controls
48 lines (42 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Tutorial</title>
</head>
<body>
<h1>Web Tutorial</h1>
<h2 style=background:yellow;>
<a href="Pages/Page1.html">HTML</a>
<a href="Pages/Page2.html">CSS</a>
<a href="Pages/Page3.html">JAVASCRIPT</a>
<a href="Pages/Page4.html">PYTHON</a>
</h2>
<img src="Images/code.jpg" alt="" width="100%" height="600px">
<br>
<h1>What is Coding?</h1>
<p><b>Coding</b> is the primary method for allowing intercommunication between humans and machines.
In the nascent stages of coding, this was done using punch cards and physically placing them on the
computer. Then, came computer programming languages that helped humans communicate with computers
using a set of instructions. Essentially, this set of instructions that tells the computer what
it has to do is a code.</p>
<h1>How does Coding Work?</h1>
<p>
In order to understand what coding is and how it works, we must firstly set the premise. In this case, the premise
is that computers do not understand words or human languages. That may be a little difficult for us to process today
as we all speak in voice commands to our Google Home devices, isnt it? That is the beauty of code. Today, all our
devices are coded to understand human languages through voice commands.
</p>
<h1>You can make a Website by learning the Languages:</h1>
<ul>
<li>Html</li>
<li>Css</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
</body>
</html>