Skip to content

Commit

Permalink
Back to previous file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shohanojjaman committed Jul 23, 2023
1 parent 4abcce7 commit ffb80e1
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 7 deletions.
35 changes: 29 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,37 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git Practice!</title>
<title>Git Practice</title>
<link rel="stylesheet" href="style.css">
</head>

<body>

<h1>Hello World!</h1>
<p>This is a file where I am practice Git. </p>
<img src="img/Snapchat-2027736938.jpg" alt="">
<!--This is a table -->
<div class="table">
<h3>TO Do</h3>
<table>
<tr>
<th>Title</th>
<th>Resource</th>
</tr>
<tr>
<td>Git practice</td>
<td>Stack learner</td>
</tr>
<tr>
<td>Git practice</td>
<td>W3Schools</td>
</tr>
<tr>
<td>Git practice</td>
<td>Learn With Hasin Hayder</td>
</tr>
</table>
</div>
</body>

</html>
</html>
23 changes: 22 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
* {
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1{
text-align: center;
color: #888;
}
p{
text-align: center;
}
img{
width: 40%;
}
table{
border: 1px solid #333;
}
table td{
border: 1px solid #333;
padding: 5px;
text-align: center;
}
table th{
border: 1px solid #333;
}

0 comments on commit ffb80e1

Please sign in to comment.