-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml2.html
47 lines (47 loc) · 1.75 KB
/
html2.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
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css1.css">
</head>
<body>
<h1 id="intro">Introduction</h1>
<p class="summary">Hello, my nme is Dhiraj Thakur. I live in Gurgaon, I'm a final year BCA student studying in Manipal University Jaipur.</p>
<marquee><p class="subjects">My subjects are listed below:</p></marquee>
<hr>
<a href="https://www.javatpoint.com/python-tutorial"><h2>Python</h2></a>
<a href="https://www.javatpoint.com/html-tutorial" target="_self"><h3>HTML5</h3></a>
<a href="https://www.w3schools.com/css/default.asp" target="_blank"><h4>CSS</h4></a>
<hr>
<img src="..\HTMLCSS\MY_Photo.jpg" alt="manish photo" height="180" width="120">
<img class="juhi-img" src="C:\Users\manish.thakur\OneDrive - S&P Global\Documents\juhi.jpg" alt="juhi photo" height="180" width="120">
<hr>
<p>Seven Days of the week are as follows: [An example of ordered list]</p>
<ol>
<li class="ol-li">Mon</li>
<li class="ol-li">Tue</li>
<li>Wed</li>
<li>Thu</li>
<li>Fri</li>
<li>Sat</li>
<li class="ol-li">Sun</li>
</ol>
<hr>
<p>Five Vowels of English Alphabet: [An example of unordered list]</p>
<ul>
<li>A</li>
<li>E</li>
<li class="ol-li">I</li>
<li class="ol-li">O</li>
<li>U</li>
</ul>
<hr>
<table>
<tr><th>FirstName</th><th>LastName</th><th>Marks</th></tr>
<tr><td>Dhiraj</td><td>Thakur</td><td>75</td></tr>
<tr><td>Manish</td><td>Thakur</td><td>60</td></tr>
<tr><td>Priyanka</td><td>Thakur</td><td>85</td></tr>
</table>
</body>
</html>