-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvent.html
52 lines (40 loc) · 1.1 KB
/
vent.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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Duke Supports</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.css">
<link rel="stylesheet" type="text/css" href="vent.css">
</head>
<body>
<script src="vent.js"></script>
<div class = "title-block">Duke Supports</div>
<div id="singlepost">
<input type="text" class="chat" placeholder=" How are you feeling today?" id= "yok" size = "150"><br>
<button class="callprompt" id="callprompt" onclick="printOut()">
Post!</button>
</div>
<div class="post" id="answers">
<p id="postArea"></p>
</div>
<div class = "smilies" id="smilies">
<img id="myImage" onclick="changeImage()" src="pic_circle.gif" width="50" height="50">
</div>
<div id="replies">
<style>
.myText {
opacity: 0;
}
.reply{
opacity: 0;
}
</style>
<textarea class= "myText" id="myText" placeholder="Chime in!">
</textarea>
<br>
<button class="reply" id="reply" onclick="sendMail(); return false">Reply</button>
</div>
<!--make image more opaque-->
<div class = "body-block">You are not alone!</div>
</div>
</body>
</html>