-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (95 loc) · 2.82 KB
/
index.html
File metadata and controls
97 lines (95 loc) · 2.82 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!--doctype HTML-->
<html>
<head>
<title>MsgPro</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="bootstrap.min.css" type="text/css" />
<script type="text/javascript" src="jquery-1.11.0.min.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<div class="msgpro-header">
<h1>MsgPro</h1>
<a href="blanktemplate.html"><img id="add-icon" src="Media/add-icon.png" height="40px" width="40px" /></a>
</div>
<div class="conversation" id="first-conversation">
<div class="sent-to-display">
<img src="Media/sent-to-icon.png" height="30px" width="30px" />
Sent to Alice, Beth, Christina
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from Alice
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from Catherine
</div>
</div>
<div class="conversation">
<div class="received-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Doug
</div>
</div>
<div class="conversation">
<div class="received-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Alice
</div>
</div>
<div class="conversation">
<div class="sent-to-display">
<img src="Media/sent-to-icon.png" height="30px" width="30px" />
Sent to Frank, John
</div>
</div>
<div class="conversation">
<div class="sent-to-display">
<img src="Media/sent-to-icon.png" height="30px" width="30px" />
Sent to Evan
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from Evan
</div>
</div>
<div class="conversation">
<div class="received-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Molly
</div>
</div>
<div class="conversation">
<div class="received-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Hannah
</div>
</div>
<div class="conversation">
<div class="received-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Molly
</div>
</div>
<div class="conversation">
<div class="sent-to-display">
<img src="Media/sent-to-icon.png" height="30px" width="30px" />
Sent to Alice, Frank, John
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from Alice
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from Frank
</div>
<div class="response-from-display">
<img src="Media/received-from-icon.jpg" height="30px" width="30px" />
Response from John
</div>
</div>
</body>
</html>