-
Notifications
You must be signed in to change notification settings - Fork 1
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
b2af327
commit 858e1ed
Showing
2 changed files
with
36 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,7 @@ | ||
.student-item{ | ||
display: flex; | ||
flex-direction: row; | ||
gap: 1rem; | ||
justify-content: center; | ||
align-items: center; | ||
} |
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,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Students</title> | ||
<link rel="stylesheet" href="students.css" type="text/css"> | ||
</head> | ||
<body> | ||
<div class="students-container"> | ||
<div class="students-list"> | ||
<div class="student-item"> | ||
<h4>Andrey Michaely</h4> | ||
<a href="andrey-michaely/index.html">CV</a> | ||
<a href="https://www.linkedin.com/in/andrey-michaely-ptjd777">Linkedin</a> | ||
<a href="https://github.com/AndreyMich">Git</a> | ||
</div> | ||
<!-- | ||
TODO: add your item here as described in example below | ||
--> | ||
<div class="student-item"> | ||
<h4>Israel Israeli</h4> | ||
<a href="enter relative path to your index.html">CV</a> | ||
<a href="enter your linkedin profile link">Linkedin</a> | ||
<a href="enter your github profile">Git</a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |