-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 760 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 760 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiplication Table</title>
<style>
body{
background-image: url(./images/tom.jpg);
/* background-image: url(https://i.pinimg.com/736x/96/bd/18/96bd18d969b3b055e6574d5bdf79c959.jpg); */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: black;
font-family: Arial, sans-serif;
padding: 20px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 100%;
}
</style>
</head>
<body>
<script src="./app.js"></script>
</body>
</html>