-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make initial subdirectories and add day1 files
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>First Page</title> | ||
</head> | ||
<body> | ||
<h1>Welcome to My Page</h1> | ||
<hr/> | ||
<p>Welcome to my website</p> | ||
<br/> | ||
<br/> | ||
<p>We are learning HTML</p> | ||
<img src="..." width = "250px" alt="describes the image" /> | ||
<hr/> | ||
<a href="listdemo.html">List Demo</a> <br/> | ||
<a href="tabledemo.html"> Table Demo</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>List Demo</title> | ||
</head> | ||
<body> | ||
<h2>List Demo</h2> | ||
<hr/> | ||
|
||
<ol type="I" start="5"> | ||
<li>First Item</li> | ||
<li>Second Item</li> | ||
</ol> | ||
<hr/> | ||
<ul type="circle"> | ||
<li>First Item</li> | ||
<li>Second Item</li> | ||
</ul> | ||
<hr/> | ||
<a href="day1.html">Day 1 Welcome Page</a> <br/> | ||
<a href="tabledemo.html"> Table Demo</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Table Demo</title> | ||
</head> | ||
<body> | ||
<h1 style="text-align: center;">Table Demo</h1><hr/> | ||
<table border="2"> | ||
<title>Demo Table</title> | ||
<th>Roll Number</th> | ||
<th>Name</th> | ||
<tr> | ||
<td>101</td> | ||
<td>John Doe</td> | ||
</tr> | ||
<tr> | ||
<td>102</td> | ||
<td>Bob Smith</td> | ||
</tr> | ||
</table> | ||
<hr/> | ||
<a href="day1.html">Day 1 Welcome Page</a> <br/> | ||
<a href="listdemo.html">List Demo</a> | ||
</body> | ||
</html> |