-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
45 lines (29 loc) · 1.04 KB
/
html.html
File metadata and controls
45 lines (29 loc) · 1.04 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
40
41
42
43
44
45
<head>
<link rel="stylesheet" href="css.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="flex-container">
<div id="2" class="svg-wrapper selected">
<svg height="60" width="400" xmlns="http://www.w3.org/2000/svg">
<rect class="shape" height="60" width="400" />
<div class="text"><input type="text" value="Interviewer"></div>
</svg>
</div>
<a class="switch" data-title="SWITCH" onclick="">
</a>
<div id="1" class="svg-wrapper">
<svg height="60" width="400" xmlns="http://www.w3.org/2000/svg">
<rect class="shape" height="60" width="400" />
<div class="text"><input type="text" value="Interviewé"></div>
</svg>
</div>
</div>
<div class="interview">
<div class="current"></div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js.js">
</script>
</body>