forked from siddharthsonii/Hack-Fest-22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
148 lines (125 loc) · 3.83 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<title>Template</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0 shrink-to-fit=no"
/>
<!-- Bootstrap -->
<!-- comment-->
<link
rel="stylesheet"
type="text/css"
href="bootstrap/css/bootstrap.min.css"
jai mata di
/>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta content="utf-8" http-equiv="encoding" />
<link rel="shortcut icon" href="" type="image/x-icon" />
<!-- Jquery -->
<link
rel="stylesheet"
type="text/css"
href="bootstrap/css/bootstrap.min.css"
jai mata di
/>
<script type="text/javascript" src="jquerydfgdfg.min.js"></script>
<link
rel="stylesheet"
type="text/css"
href="bootstrap/css/bootstrap.min.css"
jai mata di
/>
<h1 style="text-align:center;">Jai Mata Di</h1>
<!-- FontAwesome -->
<link href="fontawesome/css/all.css" rel="stylesheet" />
<script defer src="fontawesome/js/all.js"></script>
<!-- Axios -->
<script type="text/javascript" src="axios/axios.min.js"></script>
<!-- Personalized Includes -->
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/index.css" />
<!-- Javascript -->
<script type="text/javascript" src="js/template.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body class="body">
<div class="topnav sticky-top" id="topNav">
<a href="admin-home.html">Home</a>
<a href="admin-portal.html">Control Panel</a>
<a href="settings.html">Settings</a>
<a href="weather-updates.html">Weather Updates</a>
<a href="contact.html" class="active">Contact</a>
<a href="index.html" class="btnLogout float-right" onclick="logout()"
>Logout</a
>
<a href="javascript:void(0);" class="icon" onclick="topNavToggle()">
<i class="fa fa-bars"></i>
</a>
</div>
<hr>
<form>
<input type = "checkbox" name = "maths" value = "on"> Maths
<input type = "checkbox" name = "physics" value = "on"> Physics
</form>
<form>
<input type = "checkbox" name = "maths" value = "on"> Chemistry
<input type = "checkbox" name = "physics" value = "on"> Physics
</form>
<form>
<input type = "checkbox" name = "maths" value = "on"> Maths
<input type = "checkbox" name = "physics" value = "on"> Physics
</form>
<div class="row header" id="header">
<div class="logoDiv mx-auto d-block col-auto">
<a href="admin-home.html">
<div class="element">
<img src="" class="img-fluid logo" id="logo" />
<iframeset rows = "10%,80%,10%">
<iframe name = "top" src = "/html/top_frame.html" />
<iframe name = "main" src = "/html/main_frame.html" />
<iframe name = "bottom" src = "/html/bottom_frame.html" />
<noiframes>
<body>Your browser does not support frames.</body>
</noiframes>
</iframeset>
</div>
<div class="element brandName" id="brandName"></div>
</a>
</div>
</div>
</body>
<script>
initialize();
</script>
</html>
/********/
<script>
var rows = prompt("How many rows for your multiplication table?");
var cols = prompt("How many columns for your multiplication table?");
if(rows == "" || rows == null)
rows = 10;
if(cols== "" || cols== null)
cols = 10;
createTable(rows, cols);
function createTable(rows, cols)
{
var j=1;
var output = "<table border='1' width='500' cellspacing='0'cellpadding='5'>";
for(i=1;i<=rows;i++)
{
output = output + "<tr>";
while(j<=cols)
{
output = output + "<td>" + i*j + "</td>";
j = j+1;
}
output = output + "</tr>";
j = 1;
}
output = output + "</table>";
document.write(output);
}
</script>