-
Notifications
You must be signed in to change notification settings - Fork 0
/
guestuser.html
47 lines (36 loc) · 1.26 KB
/
guestuser.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
<!DOCTYPE html>
<html>
<header>
<title>Example Account Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="guestuser.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik|Shadows+Into+Light" rel="stylesheet">
</header>
<body>
<div class="Dictionary">
<label></label>
<input id="DictionarySearch" type="text"></input>
<button id="DictionarySubmit" type="submit" value="Get a Chuck Norris Joke">Chuck Norris for Inspiration</button>
</div>
<h1 id="MainHeader"> <a href="index.html"> Keep A Thought </a> </h1>
<div class="sidebar">
<ul>
<li><a href="">New Thought</a></li>
<li><a href="savedThoughts.html">My Thoughts</a></li>
<li><a href="feed.html">Thought Feed</a></li>
<li><a href="followers.html">Followers</a></li>
</ul>
</div>
<div class="texteditor">
<p id="fakeText">[Enter your text here]</p>
</div>
<h1><button> Publish </button> </h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script text="type/javascript" src="scripts.js">
</script>
</body>
<footer>
</footer>
</html>