-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html lang="ru">
<head>
<base href="/rusname/"/>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title></title>
<meta name="fragment" content="!"/>
<meta name="description" content="todo">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<script src="index.js"></script>
<link rel="stylesheet" href="index.css"/>
<!-- <link rel="shortcut icon" type="image/x-icon" href="http://static.duoshuo.com/airpub/themes/chill/0.3.0/favicon.ico" />-->
</head>
<body>
<div class="page">
<div class="centered">
<div class="name" id="name">
Hello there!
</div>
<button onclick="document.getElementById('name').innerHTML = generate()" class="btn" id="run">Пуск</button>
</div>
</div>
<script>
let name = document.getElementById("name")
name.innerHTML = generate()
</script>
</body>
</html>