Skip to content

Commit

Permalink
Main structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Beboz1 committed Sep 14, 2024
0 parents commit ef9981a
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
24 changes: 24 additions & 0 deletions index.html
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>
Binary file added plan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions style.css
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;
}
}

0 comments on commit ef9981a

Please sign in to comment.