-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device=width initial-scale=1.0">
<meta name="author" content="gratien tuyishimire">
<title>Pascal's Triangle</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="image/logo1.jpg">
</head>
<body>
<section class="tr-content">
<div class="some1">
</div>
<div class="tr-all">
<h1>Pascal's Triangle</h1>
<div class="form-based">
<form>
<div class="form-groups">
<label for="">Enter Number</label>
<input type="text" name="number" value=""
placeholder="Enter number of rows here..." class="number">
</div>
<button type="button" name="button" class="btn-submit">Submit</button>
</form>
</div>
</div>
</section>
<section class="errorDisp">
</section>
<section class="overlay">
<h1>Pascal's triangle Output result: </h1>
<div class="dataStore">
</div>
<div class="closeDv">X</div>
</section>
<!--footer!-->
<footer>
<h5>With 💖 made by Jyoti Kumari © <span class="fullyear"></span></h5>
</footer>
<!-- external javascript include!-->
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>