-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLecture_05.html
68 lines (57 loc) · 1.87 KB
/
Lecture_05.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>
</head>
<body>
<h1 style="background-color: rgb(32, 32, 120);">This is my first heading</h1>
<h2 style="color: aqua;">This is my second heading</h2>
<p style="color: chartreuse;">This is my first para</p>
<ul>
<li>Apple</li>
<li>Mango</li>
<li>Banana</li>
</ul>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
<table> <!--table>(tr>td*3)*3-->
<tr>
<td>S.No</td>
<td>Name</td>
<td>Marks</td>
</tr>
<tr>
<td>01</td>
<td>ABCD</td>
<td>67</td>
</tr>
<tr>
<td>02</td>
<td>XYZ</td>
<td>82</td>
</tr>
</table>
<a href="https://github.com">Click Here</a>
<br>
<img src="IMG_20200818_174024" alt="Abhiraj Singh">
<p>My <i>name</i> is <u>Abhiraj Singh</u>. <s>I am pursuing Bachelors</s> of Computer Applications from Lakshmi Narain Dubey College, Motihari.
<b>I belong to Amwa Nijamat</b>, Paharpur, East Champaran. I currently live in Motihari for my education reasons.
I am in the 5th semesterm of my course. According to the curriculam provided by my university I have studied 3 different programming languages i.e, C, C++, Java. While talking about core subjects I have developed my expertise in DBMS, OS and SQL.
Also I have studied different business and communication methodologies which should be helpful in any future opportunities. Currently I am studying python and MERN stack web development.
</p>
<p>
5<sup>2</sup>
</p>
<p>O<sub>2</sub></p>
<pre>
My
name
is
Abhiraj
Singh
I live in Motihari
</pre>
</body>
</html>