Skip to content

Commit

Permalink
Make initial subdirectories and add day1 files
Browse files Browse the repository at this point in the history
  • Loading branch information
mattry committed Dec 9, 2024
1 parent 1695bd6 commit 43b14c7
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
20 changes: 20 additions & 0 deletions week1/day1/day1.html
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>
25 changes: 25 additions & 0 deletions week1/day1/listdemo.html
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>
27 changes: 27 additions & 0 deletions week1/day1/tabledemo.html
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>

0 comments on commit 43b14c7

Please sign in to comment.