-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxyz1.html
More file actions
113 lines (90 loc) · 2.35 KB
/
xyz1.html
File metadata and controls
113 lines (90 loc) · 2.35 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>CSS SHEET</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="container">
<div class="box-1">
<h1>HELLO WORLD</h1>
<p>this is to inform u tht it is xyz.
</p>
</div>
</div>
<div class="box-2">
<h1>goodbye world</h1>
<p>this is to inform u tht it is xyz.
</p>
<a class="button" href=" ">Read More</a>
</div>
<div class="categories">
<h2>categories</h2>
<ul>
<li><a href="#">Category1</a></li>
<li><a href="#">Category2</a></li>
<li><a href="#">Category3</a></li>
<li><a href="#">Category4</a></li>
</ul>
</div>
<form class="my-form">
<div class="form-group">
<label>Name:</label>
<input type="text" name="name">
</div>
<div class="form-group">
<label>Email</label>
<input type="text" name="email">
</div>
<div class="form-group">
<label>Message</label>
<textarea name="message"></textarea>
</div>
<input class="button" type="submit" value="submit">
</form>
<div class="block">
<h3>Heading</h3>
<p>This is a cat.
</p>
</div>
<div class="block">
<h3>Heading</h3>
<p>This is a dog etc
</p>
</div>
<div class="block">
<h3>Heading</h3>
<p>This is a cat. This is a dog etc.
</p>
</div>
<div class="clr"></div>
<div id="main-block">
<h3>Heading</h3>
<p>My name is xyz. I studies in xyz class in so and so school</p>
</div>
<div id="sidebar">
<p>My hobby is xyz. My favourite teacher is xyz.</p>
</div>
<div class="clr">
</div>
<div class="p-box">
<h1>HELLO</h1>
<h2>GOODBYE</h2>
</div>
<ul class="my-list">
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
<li>LIST ITEM</li>
</ul>
</div>
<a class="fix-me button" href= " ">hello</a>
<div style="margin-top : 500px"></div>
</body>
</body>
</html>