-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-py.html
More file actions
36 lines (31 loc) · 1.15 KB
/
index-py.html
File metadata and controls
36 lines (31 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Python Problem Solving</title>
<link rel="stylesheet" href="assets/css/main.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=Roboto+Mono:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
</head>
<body>
<div class="nav">
<ul>
<a href="./index.html"><li>JS Solving</li></a>
<a href="./index-py.html"><li>Python Solving</li></a>
<a href="./index-ts.html"><li>TS Solving</li></a>
</ul>
</div>
<!-- Useing Pyscript -->
<div class="main">
<h2>Bellow is the result for:</h2>
<div class="area">
<py-script src="./py_problems/1497.py">
</py-script>
</div>
</div>
</body>
</html>