<!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="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="../css/global.css">
|
|
<link rel="stylesheet" href="../css/new-animal.css">
|
|
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<div class="header__logo">
|
|
<a href="../index.html"><img src="../img/wild-animals.png" alt="img_logo"></a>
|
|
</div>
|
|
<nav class="header__menu">
|
|
<ul>
|
|
<li><a href="../index.html">HOME</a></li>
|
|
<!-- <li><a href="#">ANIMALS</a></li> -->
|
|
<li><a href="./parques-naturais.html">PARQUES</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<div class="container">
|
|
|
|
<div class="title">
|
|
<h1>Cadastrar Park</h1>
|
|
</div>
|
|
|
|
<div class="main_content">
|
|
|
|
<form class="form-control">
|
|
<div class="form-control__input-group">
|
|
<label for="name">Nome:</label>
|
|
<input type="text" id="inputNome" >
|
|
</div>
|
|
|
|
<div class="form-control__input-group">
|
|
<label for="quantity">Estado:</label>
|
|
<input type="text" id="inputEstado" >
|
|
</div>
|
|
|
|
<div class="form-control__input-group">
|
|
<label for="area">Area:</label>
|
|
<input type="number" name="area" id="inputArea">
|
|
</div>
|
|
<div class="form-control__options">
|
|
<input type="submit" value="Cadastrar" class="btn" id='btnSub'>
|
|
<a href="./parques-naturais.html" class="btn" >Voltar</a>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<!--
|
|
<iframe src="" frameborder="0" name="res-iframe" class="main__iframe"></iframe>
|
|
-->
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<span>Animals 2023 𝕔</span>
|
|
</footer>
|
|
|
|
|
|
<script src="../scripts/new-park.js"> </script>
|
|
|
|
</body>
|
|
|
|
</html>
|