-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
39 lines (38 loc) · 1.55 KB
/
Copy pathtest.html
File metadata and controls
39 lines (38 loc) · 1.55 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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>What are HTML imports and how do they work</title>
<link rel="import" href="/works/dolgusha/blue/index.html" />
<link rel="stylesheet" href="assets/css/bootstrap-grid.min.css" />
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/shablon-styles.css" />
</head>
<body>
<h1>Включить редактирование на странице</h1>
<div class="col-2 d-flex">
<div class="colors-2 d-flex justify-content-center align-items-center">
<input type="radio" id="c1" name="c" value="red" />
<input type="radio" id="c2" name="c" value="yellow" />
<input type="radio" id="c3" name="c" value="green" />
<input type="radio" id="c4" name="c" value="pink" />
<input type="radio" id="c5" name="c" value="blue" checked />
<input type="radio" id="c6" name="c" value="purple" />
<input type="radio" id="c7" name="c" value="plus" />
<label for="c1" title="red"></label>
<label for="c2" title="yellow"></label>
<label for="c3" title="green"></label>
<label for="c4" title="pink"></label>
<label for="c5" title="blue"></label>
<label for="c6" title="purple"></label>
<label for="c7" title="plus"></label>
</div>
</div>
<iframe
src="./works/dolgusha/blue/index.html"
width="100%"
height="900px"
frameborder="0"
></iframe>
</body>
</html>