-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond.html
31 lines (22 loc) · 958 Bytes
/
second.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>тест питоновского кода</title>
<link href="styles/style2.css" rel="stylesheet" type="text/css"> <!-- ссылка на css -->
<link href='http://fonts.googleapis.com/css?family=Manrope' rel='stylesheet' type='text/css'> <!-- ссылка на шрифт -->
<script defer src="https://pyscript.net/alpha/pyscript.js"></script> <!-- проба скрипта на питоне -->
</head>
<body>
<!-- <img src="images/my_photo.png" alt="фотография меня" style="width:15%;"> -->
<!-- <img src="images/snejinka.jpeg" alt="настина снежинка" style="width:10%;"> -->
<py-script>
number = ''
for i in range(0,5000):
number += str(i**2)
number += ' '
print(number)
</py-script>
<script src="scripts/main.js"></script> <!-- связка с js файлом -->
</body>
</html>