Skip to content

Commit

Permalink
page web in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
fbientrigo committed Feb 20, 2023
1 parent 18fce22 commit 3441347
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 0 deletions.
40 changes: 40 additions & 0 deletions web/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
html {
align-content: center;
background-color: azure;
}

body {
text-align: center;
color: #0f0500;

padding-left: 10%;
padding-right: 10%;
justify-content: center;
}

h2{
font-weight: bold;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.block {
background-color: aquamarine;
border-radius: 12px;
margin: 10px;
padding-left: 25%;
padding-right: 25%;
justify-content: center;

}

.grid {
grid-column: 2;


}

.carta {
width: 200px;
height: 500px;
background-color: darkviolet;
}
50 changes: 50 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!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">
<link rel="stylesheet" href="css/style.css">
<title>Estudia facil</title>
</head>
<body>


<div class="content block">
<h2>Repeticion Espaciada</h2>
aqui citacion a publicaciones sobre el aprendizaje mediante
metodos de repeticion espaciada
</div>

<div class="content block">
imagenes y graficos sobre el tema
</div>

<div class="content block">
<h2>Tarjetas anki</h2>
<p>Las tarjetas se utilizan como una guia de estudio,
funcionan con una pregunta y una respuesta,
dependiendo de si respondes correctamente o no, cambiara
el tiempo en que vuelve a aparecer
</p>
</div>

<div class="content block">
<h3>Free Packs!</h3>
<p>30 cartas sobre distintos temas universitarios</p>
<div class="grid">

<div class="carta">A</div>
<div class="carta">B</div>
<div class="carta">C</div>
<div class="carta">D</div>

</div>
</div>
<div class="content block"></div>
<div class="content block"></div>
<div class="content block"></div>


</body>
</html>
8 changes: 8 additions & 0 deletions web/web_vs_code_workspace.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": ".."
}
],
"settings": {}
}

0 comments on commit 3441347

Please sign in to comment.