-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (23 loc) · 922 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
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Hello, world!</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<meta http-equiv="content-type" content="text/html" charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
</head>
<body>
<div class="container">
<form>
<textarea type="text" id="textfield"></textarea><br>
<input type="button" id="button" value="Посчитать" onclick="countSymbols()">
<input type="reset" id="clearbutton" value="Очистить" onclick="clearResult()">
<div class="result" id="result">
<p id="withSpaces">Символов с пробелами:</p>
<p id="without">Символов без пробелов:</p>
</div>
</form>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>