Skip to content

Commit

Permalink
#6 added only students.html + css
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMich committed Dec 22, 2023
1 parent b2af327 commit 858e1ed
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions students.css
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;
}
29 changes: 29 additions & 0 deletions students.html
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>

0 comments on commit 858e1ed

Please sign in to comment.