-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.html
More file actions
55 lines (55 loc) · 1.91 KB
/
Copy pathfirst.html
File metadata and controls
55 lines (55 loc) · 1.91 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
<html>
<head>
<title>First page</title>
</head>
<body>
<!--comment here-->
<h1 style="border:3px solid red;">Hello world</h1>
<h6>h6 here</h6>
<p style="background-color:rgb(5, 84, 152,0.8);color:yellowgreen;">
Paragraphs are the building blocks of papers.
Many students define paragraphs in terms of length:
a paragraph is a group of at least five sentences,
a paragraph is half a page long, etc.<blockquote> In reality,
though, the unity and coherence of ideas among
sentences is what constitutes a paragraph.</blockquote> </p>
<hr>
<p style="font-family:courier;text-align:center;">
Lorem ipsum
is simple dummy
text of the
printing and typesetting.
</p>
<p><pre style="font-family:courier;text-align:center;">
<b>Lorem ipsum</b>
<ins>is simple</ins> <del>dummy</del>
text of the <strong>printing </strong>
and <small>typesetting.</small>
</pre>
</p>
<p style="font-size:300%;background-color:thistle"> lorem ipsum
is simple dummy
text of the
printing and typesetting.
</p>
<table style="border:2px solid green">
<tr>
<th>Name</th>
<th>usn</th>
</tr>
<tr>
<td>abcv</td>
<td>4vv17cs110</td>
</tr>
</table>
<ul>
<li>Apple</li>
<li>orange</li>
</ul>
<ol>
<li>Apple</li>
<li>orange</li>
</ol>
<p>a<sup>2</sup>+b<sup>2</sup></p>
</body>
</html>