-
Notifications
You must be signed in to change notification settings - Fork 0
/
sematic task.html
68 lines (64 loc) · 2.29 KB
/
sematic task.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
header{
background-color: grey;
color: white;
text-align: center;
height: 160px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
nav{
background-color:rgb(219, 207, 207);
height: 270px;
width: 350px;
display: flex;
float:left;
}
nav ul li{
list-style-type: none;
}
article{
width: 977px;
height: 270px;
background-color: rgb(248, 246, 246);
float: right;
}
footer{
background-color: grey;
color: white;
width: 100%;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<header>
<h1>MERNSTACK</h1>
</header>
<nav>
<ul>
<li><a href="Form.html">HTML</a></li>
<li><a href="frame.html">MongoDB</a></li>
<li><a href="Table.html">ExpressJS</a></li>
</ul>
</nav>
<article>
<h3>HTML</h3>
<p>HTML stands for Hyper Text Markup Language. It is used to design web pages using a markup language. HTML is a combination of Hypertext and Markup language. Hypertext defines the link between web pages. A marup language is used to define the text document within the tag which defines the structure of web pages. This language is used to annote(make notes for the computer) text so that a machine can understand it and manipulate text accordingly. Most markup languages (e.g.HTML) are human-readable. The language uses tags to define what manipulation has to be done on the text.<br>
<p>HTML is a markup language used by the browser to manipulate text,images,and other content, in order to display it in the required format. HTML was created by Tim Berners-Lee in 1991. The first-ever version of HTML was HTML 1.0,but the first standard version was HTML 2.0,published in 1995.</p>
</article>
<footer>
<p>www.entriapp.com</p>
</footer>
</body>
</html>