-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.html
36 lines (35 loc) · 1.21 KB
/
document.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./Style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body class="MainAppBackground">
<div class="SideBar">
<img src="./images/bruce-main.jpg" class="ProfPic" />
<p class="ProfileName">Bruce</p>
<p class="Status">"I still haven't found who's a good boy"</p>
</div>
<div class="Main">
<div class="NavBar">
<img src="./images/cinthya-main.jpeg" class="ProfPic ProfPicSmall" />
<div class="ProfileOnTop">
<p class="ProfileName">Cynthia</p>
<p class="Status">"You got me at KFC"</p>
</div>
</div>
<div class="JustifiedContent">
<div class="ChatContent"></div>
<div class="MessageCreator">
<form class="FormMessage">
<textarea class="Message" name="Message" wrap="hard"> </textarea>
<button type="submit" class="DogButton" name="DogButton">
<img src="./images/paw-print-.svg" class="DogPaw" />
</button>
</form>
</div>
</div>
</div>
<script src="javascript-file.js"></script>
</body>
</html>