-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (58 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<!-- prettier-ignore -->
<head>
<meta charset="UTF-8" />
<title>Multiplication Table</title>
<meta name="author" content="Shayan Zamani" />
<meta name="theme-color" content="#2E3D49" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="math online tool, multiplication table, online multiplication table, multiplication table website" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="shayan-zamani.me" />
<meta property="og:title" name="title" content="Multiplication Table" />
<meta property="og:url" content="https://shayanthenerd.github.io/multiplication-table/" />
<meta property="og:image" content="https://shayanthenerd.github.io/multiplication-table/og-img.webp" />
<meta property="og:image:alt" content="multiplication table" />
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:description" name="description" content="An elegant multiplication table with hover effect. Move the cursor on table cells to highlight current rows and columns." />
<meta name="twitter:site" content="@shayan-zamani.me">
<meta name="twitter:title" content="Multiplication Table">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://shayanthenerd.github.io/multiplication-table/og-img.webp" />
<meta property="twitter:image:alt" content="multiplication table" />
<link rel="icon" type="image/svg+xml" href="./assets/favicon.svg" />
<link rel="stylesheet" href="./assets/styles.css" />
<script type="module" src="./assets/js/app.js"></script>
</head>
<body>
<!-- Non-Desktop device warning modal -->
<dialog id="warning_modal" class="warning-modal">
<strong>Please preview website on a desktop device.</strong>
<button type="button" aria-controls="warning_modal" id="close_modal_btn" class="warning-modal__close-btn">
OK
</button>
</dialog>
<header class="header">
<h1 class="header__title">Multiplication Table</h1>
<address class="contact-links">
<small style="font-size: small">by</small>
<a href="https://shayan-zamani.me" target="_blank" rel="noreferrer" class="contact-links__author">
Shayan Zamani
</a>
</address>
</header>
<!-- Multiplication table -->
<div class="wrapper">
<main class="main">
<table id="table" class="table">
<thead class="table__head">
<tr id="table_top_header_row"></tr>
</thead>
<tbody id="table_body" class="table__body"></tbody>
</table>
</main>
</div>
</body>
</html>