-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroom.html
34 lines (31 loc) · 1000 Bytes
/
room.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Speaking Alpha</title>
<link rel="stylesheet" href="styles/styles.css" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body class="room">
<header>
<a href="/" class="logo">
<img src="/assets/mark-secondary-300.svg" alt="Speaking Alpha" />
</a>
<input type="text" placeholder="Recording #1234" />
<div class="actions">
<button class="share act"><i class='bx bx-share'></i> Share</a>
<button class="rec act"><i class='bx bx-circle' ></i> Record</button>
<!--button class="rec act"><i class='bx bx-stop-circle' ></i> Stop</button-->
</div>
</header>
<main>
<div class="stage">Stage</div>
<div class="notes">Notes</div>
</main>
</body>
</html>