-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
26 lines (26 loc) · 1.29 KB
/
1.html
File metadata and controls
26 lines (26 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>WEB1 - HTML</title>
<meta charset="utf-8">
<script src="colors.js";></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<input id="_night" type="button" value="night" onclick="
nightdayhandler(this);
">
<div id="grid">
<ol>
<li><a href="1.html">HTML</a></li>
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">Javacript</a></li>
</ol>
<div id="article">
<h2>HTML</21>
<strong>HyperText Markup <u>Language</u></strong> or <a href="https://www.w3schools.com/html/" target = "_blank" title="HTML specification">HTML</a> is the standard markup language for documents designed to be displayed in a web browser.HTML elements are the building blocks of HTML pages. <img src="image1.jpg" width = "100%"> <p style = "margin-top:40px">With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets</p>
</div>
</div>
</body>
</html>