-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 829 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>titlee</title>
<link rel = "stylesheet" type="text/css" media = "screen" href="main.css"/>
<script src = "main.js"></script>
</head>
<body>
<h1>Calculator : Addition</h1>
<form action = "/" method = "post">
<input type = "text" name = "n1" placeholder="First Number"/>
<input type = "text" name = "n2" placeholder="Second Number"/>
<button type = "submit" name = "submit">Add</button>
</form>
</body>
</html>
</DOCTYPE>