-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 1.17 KB
/
index.html
File metadata and controls
39 lines (32 loc) · 1.17 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
<head>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<meta charset="UTF-8">
<title>JavaScribe</title>
</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"></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>
<div class="micall"><i class="material-icons">hearing</i></div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>