-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab.html
More file actions
77 lines (63 loc) · 2.25 KB
/
lab.html
File metadata and controls
77 lines (63 loc) · 2.25 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
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Module 1 Lab</title>
</head>
<link rel="stylesheet" href="lab.css" />
<body>
<!--Create div class 'greeting-container' to stored all HTML, CSS and JavaScript
programmatic languages in one (1) container frame for my lab calculator page
assignment. -->
<div class="greeting-container">
<div>
<h2 id="greeting-container1">Welcome to Arithmetic Operations are Fun</h2>
</div>
<div>
<!--Create paragraph id in 'operand-container1' and 'operand-container2'
to store users' arithmetic input operations in order to display
interactive webpage written in JavaScript language codes.-->
<div>
<span>
<p id="operand-container1">Operand Number 1:
<br>
<p id="operand-container2">Operand Number 2:
<br>
</p>
</p>
</span>
</div>
</div>
<div>
<div>
<p id="addition">addition
<br>
<p id="subtraction">subtraction
<br>
<p id="multiplication">multiplication
<br>
<p id="division">division
<br>
<p id="modulus">modulus
<br>
</p>
</p>
</p>
</p>
</p>
</div>
</div>
<script src="lab.js"></script>
<!--Create html ownership footer for my lab calculator webpage.-->
<div>
<p class="p1">This webpage is design by Sarai Hannah Ajai.
<br>
In regards to her Edx.org Microsoft (Dev 279x) 'Building Interactive
Prototypes using JavaScript' lab assignment for Module 1.
<br>
Dated on May 21, 2019</p>
</div>
</body>
</html>