-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 1017 Bytes
/
index.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<img src="logo.png" alt="logo"/>
</header>
<div class="content">
<div class="card">
<div class="card-top">
<input id="title" placeholder="Title"/>
</div>
<input id="content" placeholder="Content..."/>
<div class="controls">
<div class="location">
</div>
<button id="postBtn">Post message</button>
</div>
</div>
<footer id="footer">
<p>App version 1.0. Last API call came from the instance <span>i-1234567890abcdef0</span> found in
region <span>us-west-2</span>, Availability Zone <span>us-west-2b</span>, with public IP
<span>265.23.64.12</span></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>