-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepamtask.html
More file actions
192 lines (175 loc) · 5.23 KB
/
epamtask.html
File metadata and controls
192 lines (175 loc) · 5.23 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="taskstyle.CSS">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>epam</title>
</head>
<body >
<header><center><img src="epimg.png" style="height:50px"></center><h1>HTML Elements</h1></header>
<nav class = 'borde' class="ali">
<br>
<hr class="borde">
<a href="#Home" class="ali">Home</a>
<a href="#Headers" class="ali">Headers</a>
<a href="#Table" class="ali">Table</a>
<a href="#List" class="ali">List</a>
<a href="#Text formats" class="ali">Text formats</a>
<a href="#Blockquoates" class="ali">Block quotes</a>
<br><br>
<hr class="borde">
</nav>
<div style="height: 300px;">
<p>pay attention to hit tag inside section element.Font Size for h1 is the same as font size for h2, because we have to use only one h1 on the page, and it is commonly used inside header </p>
<br>
<h2 id="Headers">Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
</div>
<div class="divst">
<strong>Lorem ipsum</strong> dolor sit amet, <a href=""> consectetur</a> adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. <i>Ut enim ad minim veniam,</i>
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui <mark>officia</mark> deserunt mollit <small>anim</small> id est laborum.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id <strong>est laborum</strong>.
<br><br><br>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
cillum dolore eu <u>fugiat nulla pariatur</u>. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, <b>consectetur adipisicing elit</b>, sed do eiusmod
tempor incididunt ut <big>labore</big> et dolore magna aliqua.
</div>
<br><br><br>
<hr class="borde">
<br>
<h2 id="Table">Table</h2>
<table border="" cellspacing="0" class="tabset">
<tr>
<th>S.no</th>
<th>RollNumber</th>
<th>Name</th>
</tr>
<tr>
<td>1</td>
<td>21a91a04b5</td>
<td>vardhan</td>
</tr>
<tr>
<td>2</td>
<td>21a91a04d0</td>
<td>siva</td>
</tr>
<tr>
<td>2</td>
<td>21a91a04l1</td>
<td>sriram</td>
</tr>
<tr>
<td>2</td>
<td>21a91a0470</td>
<td>suvarnaraju</td>
</tr>
</table>
<br>
<h2 id="List">Unordered List</h2>
<ul>
<li>List Item 1</li>
<li>List Item 2
<ul> <li>Some nested list item 1</li></ul>
</li>
<li>List Item 3</li>
</ul>
<h2>Ordered List</h2>
<ol>
<li>List Item 1</li>
<li>List Item 2
<ol> <li type="A">Some nested list item 1</li></ol>
</li>
<li>List Item 3</li>
</ol>
<dl>
<h5>defines terms 1</h5>
<dt>description 1</dt>
<h5>defines terms 2</h5>
<dt>description 2</dt>
</dl>
<label>Details</label>
<select>
<option>HTML</option>
<option>CSS</option>
</select>
<br>
<hr class="borde">
<h1 id="Text formats">Text formats</h1>
<article>
<h3>Article Text</h3>
<h4>Article title</h3>
<h5>Article description</h4>
</article>
<h2>Preformatted Text</h2>
<div class="mystyle">
<pre class="mytextsize">
Text
in a pre element
is displayed in a fixed widht
font, and it preserves
both
spaces and
line breaks
</pre>
</div>
</div>
<h2>code</h2>
<div class="mystyle">
<pre>
.wrapper{
diaplay: flex;
vertical-align: middle;
justify-content:center;
}
</pre>
</div>
<h1 id="Blockquoates">Blockquoates</h1>
<p>Let's keep it simple.Italics are good to help set it off from the body text. Be sure to style the citations</p>
<blockquote class="bq">
<q>if you go back a few hundred year, what we take gor granted today would seem like magic-being able to talk to people over long distances, to transmit images, flying, accessing vast amounts of data like an oracle. These are all
things that would have been considered magic a few hundred years ago</q> <br> <a href="#">elonmask</a>
</blockquote>
<hr>
<div style="height: 386px;width: 100%;">
<form>
<div class="bc" style="height: 386px;width: 500px; float: right;">
<label>First name:</label>
<input type="text">
<br><br>
<label>Surname:</label>
<input type="name">
<br><br>
<label>Email:</label>
<input type="Email">
<br><br>
<label></label>
<textarea style="height:200px;"></textarea>
<br><br>
<label></label>
<input type="submit" style="width: 180px;">
</div>
</form>
</div>
<footer style="height:150px; background-color:silver;">
<br><br>
<center><p>@Copyrights Epam Systems</p></center>
</footer>
</body>
</html>