25 lines
784 B
Text
25 lines
784 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Seca home</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/css/seca.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="over-background">
|
|
<h1>la seca</h1>
|
|
<button class="button-primary">Home</button>
|
|
<button class="button-primary">Ofertas</button>
|
|
<button class="button-primary">Red</button>
|
|
<button class="button-primary">Mi perfil</button>
|
|
</div>
|
|
<div id="offers-section" class="over-background">
|
|
<button class="button-primary">Crear oferta</button>
|
|
</div>
|
|
<div id="offers-section" class="over-background" style="display: none">
|
|
<h2>Crear oferta</h2>
|
|
</div>
|
|
</body>
|
|
</html>
|