-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomputer-code.html
More file actions
39 lines (39 loc) · 938 Bytes
/
Copy pathcomputer-code.html
File metadata and controls
39 lines (39 loc) · 938 Bytes
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
<!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>Computer Code</title>
</head>
<body>
<p>code :</p>
<pre>
<code>
x = 5;
y = 6;
z = x + y;
</code>
</pre>
<hr />
<p>kbd : keyboard input</p>
<p>To save any document by pressing <kbd>Ctrl + s</kbd></p>
<hr />
<p>samp : sample output of a computer program</p>
<p>
<samp
>File Not Found <br />
Press F1 to continue</samp
>
</p>
<hr />
<p>var : used to define a variable in programming</p>
<p>The area of the triangle is : 1/2 X <var>b</var>X <var>h</var></p>
<hr />
<p>pre : preformatted text</p>
<pre>
to write the
poem lines
</pre>
</body>
</html>