forked from DWDMobile/Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek1.html
42 lines (36 loc) · 1.07 KB
/
week1.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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Look</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Welcome screen -->
<div class="welcome">
<span class="logo">Look (will change to logo.png)</span>
<button class="explore_bt">icon</button>
<button class="create_bt">icon</button>
</div>
<!-- Camera feed -->
<div class="camera">
<span>the live camera feed</span>
</div>
<!-- Buttons for sketch ("create" screen) -->
<div class="create" id="footer">
<button class="brush">icon</button>
<button class="paint">icon</button>
<button class="undo">icon</button>
<button class="redo">icon</button>
<button class="upload">icon</button>
</div>
<!-- Button for publish ("create" screen)-->
<div class="create" id="header">
<button class="pin">icon</button>
</div>
<!-- "explore" screen)-->
<div class="explore">
<!-- images here -->
</div>
</body>
</html>