-
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.
- Loading branch information
1 parent
4abcce7
commit ffb80e1
Showing
2 changed files
with
51 additions
and
7 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 |
---|---|---|
@@ -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> |
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 |
---|---|---|
@@ -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; | ||
} |