-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathMy_first_html.html
84 lines (79 loc) · 3.2 KB
/
My_first_html.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<img src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fin.pinterest.com%2Fpin%2F353603008238944926%2F&psig=AOvVaw2qAjL9X9ETxgNLSUvy4NzO&ust=1599689729901000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCOCD1evK2usCFQAAAAAdAAAAABAD" alt="lion logo">
<h1>Welcome to my first Website</h1>
<hr>
<h2>My name is Roshan Agarwal</h2>
<p>I study in <b>Birla Institute of Technology</b>. I am currently pursuing <i>Mechanical Engineering</i> and I am in second year trynna figure out my life.<br><br>Currently stuck in my house due to <em>covid-19:</em>(</p>
<p>My Hobbies are</p>
<!-- <ul>
<table
cellspacing="10">
<tr>
<li><td><a href="#">Sports</a></td></li>
<li><td><a href="#">Music</a></td></li>
<li><td><a href="#">Partying</a></td></li>
</tr>
</table>
</ul> -->
<!-- <ul>
<table
cellspacing="10">
<tr>
<td><li><a href="#">Sports</a></li></td>
<td><li><a href="#">Music</a></li></td>
<td><li><a href="#">Partying</a></li></td>
</tr>
</table>
</ul> -->
<table
cellspacing="10">
<tr>
<td><a href="#">Sports</a></td>
<td><a href="#">Music</a></td>
<td><a href="#">Partying</a></td>
</tr>
</table>
<p>My Social media handles</p>
<table
border="1"
cellpadding="10"
cellspacing="5">
<tr>
<td><button>Instagram</button></td>
<td><button>Facebook</button></td>
<td><button>Linkedin</button></td>
</tr>
<tr>
<td><button>Snapchat</button></td>
<td><button>Github</button></td>
<td><button>Twitter</button></td>
</tr>
</table>
<br>
<hr>
<h2>My Fav video</h2>
<ol>
<li>Charlie Puth</li>
<li>Selena Gomes</li>
<li>We don't Talk anymore</li>
</ol>
<iframe width="560" height="315" src="https://www.youtube.com/embed/i_yLpCLMaKk" frameborder="0" allowfullscreen></iframe>
<hr>
<h3>Contact</h3>
<form>
Name: <input type="text">
<br><br>
Email: <input type="email">
<br><br>
Phone: <input type="tel">
<br><br><br>
<!-- <button>SUBMIT</button> -->
<input type="submit" value="Enter">
</form>
</body>
</html>