-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
35 lines (27 loc) · 876 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<h1>(ES6/Vanilla)Javascript From the Scratch with <br>Live Server Extension</h1>
<hr>
<h2>Function only without Design</h2>
<div id='msg'></div>
<div id='info'></div>
<label>Email: </label> <input type="text" name="email" id="email"><br>
<label>Password: </label> <input type="text" name=password id="password"><br>
<button type="submit" id="submit">SUMIT</button><br><br>
<label> this is JS TABLE</label>
<div id='table'></div>
end pure js table
<br><br>
data without js table
<table id='headTbl' border='1'>
</table>
<script src='index.js'></script>
</body>
</html>