-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 880 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (21 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<head>
<title>SayChiz</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<input type="file" id="upload" accept="image/*" onchange="readURL(this.files)"></input>
<span class="title">SayChiz</span>
</header>
<div>
<img id="pic" src="http://www.indre-reisid.ee/wp-content/themes/envision/lib/images/default-placeholder.png"/>
</div>
<footer onclick="openFileDialog()">
<img id="icon" src="http://images.designtrends.com/wp-content/uploads/2016/01/18111936/Reflex-Camera-Icon.png" />
</footer>
</body>
</html>