-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASSES02.html
68 lines (43 loc) · 1.56 KB
/
ASSES02.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="asses02.css">
<style>
li a["https://www.google.com"]:visited {
color: blueviolet ;
}
</style>
</head>
<body>
<h1>Welcome to Free Blog!</h1>
<div class="first">
<p>Thanks so much for visiting this site!</p>
</div>
<h2>What is this site for?</h2>
<p>This site can do three things:</p>
<ol>
<li id="itemone">Take in text input</li>
<li>Take in Log In Information</li>
<li><a href="http://www.google.com">Take you to Google</a></li>
</ol>
<div class="blogtext">
<textarea name="name" id="textblock"></textarea>
</div>
<h2>Please log in to save your blog post</h2>
<form class="loginForm" method="get">
<label for="mail">Email: </label>
<input type="email" id="mail" value="">
<label for="pass">Password: </label>
<input type="password" id="pass" value="">
<input type="submit" name="" value="Log In">
</form>
<div class="exit">
<p>Questions or Comments? Send us feedback here:</p>
<textarea name="name" rows="8" cols="80"></textarea>
</div>
</body>
</html>