-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathshades of red color.html
More file actions
71 lines (71 loc) · 2.2 KB
/
shades of red color.html
File metadata and controls
71 lines (71 loc) · 2.2 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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<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>Different Shades of red Colour</title>
</head>
<body>
<center>
<p class="first">
The definition of coding is the process of creating instructions for
<br />
computers using programming languages. Computer code is used to program
<br />
the websites, apps, and other technologies we interact with every day.
</p>
<p class="second">
A programming language is a vocabulary and set of grammatical rules for
<br />
instructing a computer or computing device to perform specific tasks.
The
<br />
term programming language usually refers to high-level languages, such
as
<br />
BASIC, C, C++, COBOL, Java, FORTRAN, Ada, and Pascal.
</p>
<p class="third">
JavaScript is a programming language commonly used in web development.
It
<br />
was originally developed by Netscape as a means to add dynamic and
<br />
interactive elements to websites. ... Like server-side scripting <br />
languages, such as PHP and ASP, JavaScript code can be inserted anywhere
<br />
within the HTML of a webpage.
</p>
<p class="fourth">
React is a declarative, efficient, and flexible JavaScript library for
<br />
building user interfaces. It's 'V' in MVC. ... It designs simple views
for
<br />
each state in your application, and React will efficiently update and
<br />
render just the right component when your data changes.
</p>
</center>
<style>
p {
font-size: 1.6em;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
.first {
color: rgb(199, 43, 4);
}
.second {
color: rgb(88, 22, 1);
}
.third {
color: rgb(236, 53, 53);
}
.fourth {
color: rgb(151, 86, 43);
}
</style>
</body>
</html>