Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&display=swap" rel="stylesheet">
<style>
body {
background: #3E3B47;
}

.text1 {
/* Horários agendados */
position: absolute;
width: 341px;
height: 47px;
left: 160px;
top: 208px;

font-family: 'Roboto Slab', serif;
font-style: normal;
font-weight: bold;
font-size: 36px;
line-height: 47px;

/* White */
color: #F4EDE8;
}


.subtitle1 {
/* Hoje | Dia 06 | Segunda-feira */
position: absolute;
width: 227px;
height: 21px;
left: 160px;
top: 267px;

font-family: 'Roboto Slab', serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 21px;

/* Orange */
color: #FF9000;
}

.subtitle2 {
/* Atendendimento a seguir */
position: absolute;
width: 240px;
height: 26px;
left: 160px;
top: 352px;

font-family: 'Roboto Slab', serif;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 26px;

/* Gray */
color: #999591;
}
</style>



</head>

<body>


<h1 class='text1'>Horários agendados</h1>
<h2 class='subtitle1'>Hoje | Dia 06 | Segunda-feira</h2>
<h3 class='subtitle2'>Atendimento a seguir</h3>

</body>

</html>