-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.html
More file actions
31 lines (31 loc) · 713 Bytes
/
first.html
File metadata and controls
31 lines (31 loc) · 713 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>homepage</title>
</head>
<body style="">
<h1>This is page is a page to learn html basics</h1>
<h2 style="color: green;">So let's deep dive into our lessons</h2>
<h3>Let's start with adding an image</h3>
<img src="img_girl.jpg" width="500" height="600">
<h2>Let's Learn Unreal Engine</h2>
<h4>Here's a youtube tutorial</h4>
<a href="https://www.youtube.com/watch?v=k-zMkzmduqI">unreal 5</a>
<table>
<tr style="background: green;">
<th>Name</th>
<th>Roll</th>
</tr>
<tr>
<td>Saif</td>
<td>46</td>
</tr>
<tr>
<td>Naeem</td>
<td>55</td>
</tr>
</table>
</body>
</html>