-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
32 lines (31 loc) · 1.58 KB
/
grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Grid</title>
<link rel="stylesheet" href="css/grid.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abel&family=Anton&family=Lato:wght@300&family=Montserrat&family=Roboto&family=Source+Code+Pro&family=Work+Sans&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4d0b40d330.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body class="d-flex flex-column">
<div id="container"></div>
<div class="d-flex justify-content-around w-100 py-3" id="selectors">
<div class="">
<label for="rowInput">Rows:</label>
<input type="text" id="rowInput" class="mb-3"/>
<button class="btn btn-outline-secondary" type="submit">Submit</button>
</div>
<div class="">
<label for="colInput">Columns:</label>
<input type="text" id="colInput" class="mb-3"/>
<button class="btn btn-outline-secondary" type="submit">Submit</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.3.js" integrity="sha256-nQLuAZGRRcILA+6dMBOvcRh5Pe310sBpanc6+QBmyVM=" crossorigin="anonymous"></script>
<script src="js/grid.js"></script>
</body>
</html>