-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
29 lines (24 loc) · 972 Bytes
/
hello.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Lexend Deca' rel='stylesheet'>
<link rel="stylesheet" href="template.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="logo">
<img id="logoimg" src="assets/Logo.svg">
<span id="title">MoodyMind</span>
</div>
<div style="text-align: center;" id="journalentry">
<p id="text-prompt" style="color: white">Tell me about it.</h1>
<label for="mhentry"></label><textarea id="mhentry"></textarea><br><br>
<input type="submit" class="button" id="submitButton" value="Submit">
<a href="entryMenu.html"><input type="submit" class="button" id="retrieveButton" value="Entries"></a>
<script type="module" src="./src/index.js"></script>
</div>
<div style="text-align: center" id="previousentries"></div>
</div>
</body>
</html>