forked from a-r-nida/HactoberFest2020-Beginers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyPage.html
56 lines (51 loc) · 1.18 KB
/
myPage.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
<!DOCTYPE html>
<html>
<head>
<style>
.red-text {
color: red;
}
p{
font-size: 25px;
color: green;
font-family: monospace;
background-color: lightblue;
}
#para1 {
text-align: center;
color: red;
background-color: white;
}
*{
background-color: lightgreen;
}
</style>
<h1 style="color: blue;text-align:center;">My Page</h1>
<p id="para1">Hello World!</p>
<h2 class="red-text">Success in Life</h2>
</head>
<main>
<div>
<p>How to be a successful person:</p>
<ul>
<li>Strongly willing to learn</li>
<li>Sustain Failure</li>
<li>Strong Determination</li>
</ul>
<p>Necessities for success:</p>
<ol>
<li>Good Idea</li>
<li>Plan to work upon</li>
<li>Smart work</li>
</ol>
</div>
<form action="/submit">
<h2 style="color: red;">Do you think you are</h2>
<label><input type="checkbox" name="personality" > Strong</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Energetic</label><br><br>
<input type="text" placeholder="Add Comments" required><br><br>
<button type="submit">Submit</button>
</form>
</main>
</html>