-
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
0 parents
commit ef9981a
Showing
3 changed files
with
54 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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Bebo Chess</title> | ||
</head> | ||
<body> | ||
<div> | ||
<h2>Your work</h2> | ||
<img src = "plan.png"></div> | ||
<div class = "openings"> | ||
<div> | ||
<h2>Queen's Gambit accepted</h2> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/8oRu1fUOtm8?si=JD5Px8sX4bI5VB60" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
</div> | ||
<div> | ||
<h2>Caro kann defence</h2> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/zwgGkEG2pck?si=Lj3vMTIYKT4h75Mm" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</body> | ||
</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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
img{ | ||
width: 500px; | ||
height: 700px; | ||
border: 8px double lightblue; | ||
border-radius: 25px; | ||
} | ||
.openings{ | ||
padding: 10px; | ||
display:grid; | ||
justify-content: center; | ||
border: 5px dotted white; | ||
border-radius: 50px; | ||
} | ||
iframe{ | ||
width: 400px; | ||
height: 300px; | ||
} | ||
body{ | ||
display:grid; | ||
grid-template-columns: 1fr 1fr; | ||
background-color: black; | ||
color: white; | ||
} | ||
@media only screen and (max-width:970px){ | ||
body{ | ||
display: grid; | ||
justify-content: center; | ||
grid-template-columns: 1fr; | ||
} | ||
} |