-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bruno Vinícius
committed
Jul 9, 2018
1 parent
dc42c07
commit ff83977
Showing
1 changed file
with
44 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,52 @@ | ||
<!doctype html> | ||
|
||
<head> | ||
<title>Calculo de Frete - Motoboy</title> | ||
<script async | ||
src="https://www.googletagmanager.com/gtag/js?id=UA-121994767-1"></script><script>function | ||
gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new | ||
Date),gtag("config","UA-121994767-1")</script> | ||
<meta name="author" content="Bruno Sousa"> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | ||
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet"> | ||
<title>Calculo de Frete - Motoboy</title> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121994767-1"></script> | ||
<script>function | ||
gtag() { dataLayer.push(arguments) } window.dataLayer = window.dataLayer || [], gtag("js", new | ||
Date), gtag("config", "UA-121994767-1")</script> | ||
<meta name="author" content="Bruno Sousa"> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" | ||
crossorigin="anonymous"> | ||
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<script src="https://maps.google.com/maps?file=api&v=__ar1op41oD8"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script> | ||
<script src="js/jquery.jmap.min-r72.js" type="text/javascript"></script> | ||
<script src="https://maps.google.com/maps?file=api&v=2&key=AIzaSyBZJDUkG83bcVMgdRoJPOotgt0v305l6W4"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script> | ||
<script src="js/jquery.jmap.min-r72.js" type="text/javascript"></script> | ||
|
||
<div class="row justify-content-center"> | ||
<div class="col-sm-7"> | ||
<script src="js/chama-mapa.js" type="text/javascript"></script> | ||
<!-- CHAMAR MAPA --> | ||
|
||
<div class="row justify-content-center"> | ||
<div class="col-sm-7"> | ||
<script src="js/chama-mapa.js" type="text/javascript"></script> <!-- CHAMAR MAPA --> | ||
|
||
<div id="formulario" class="form-group"> | ||
<form action="/" id="corrida"> | ||
<label for="partida">Estou em: </label> | ||
<input type="text" id="partida" class="form-control" value="Rua Augusto Carlos Bauman, São Paulo, São Paulo"/><br/> | ||
<label for="chegada">Irei para: </label> | ||
<input type="text" id="chegada" class="form-control" value="Itaquera, São Paulo, São Paulo"/><br /> | ||
<button type="submit" class="btn btn-primary">Calcular</button> | ||
</form> | ||
</div> | ||
<div id="mostrador"></div> | ||
<div id="mapa"></div> | ||
<div id="aviso"></div> | ||
<div id="direcoes"></div> | ||
</div> | ||
</div> | ||
<div id="formulario" class="form-group"> | ||
<form action="/" id="corrida"> | ||
<label for="partida">Estou em: </label> | ||
<input type="text" id="partida" class="form-control" value="Rua Augusto Carlos Bauman, São Paulo, São Paulo" /> | ||
<br/> | ||
<label for="chegada">Irei para: </label> | ||
<input type="text" id="chegada" class="form-control" value="Itaquera, São Paulo, São Paulo" /> | ||
<br /> | ||
<button type="submit" class="btn btn-primary">Calcular</button> | ||
</form> | ||
</div> | ||
<div id="mostrador"></div> | ||
<div id="mapa"></div> | ||
<div id="aviso"></div> | ||
<div id="direcoes"></div> | ||
</div> | ||
</div> | ||
</body> | ||
<style> | ||
#partida,button{font-family:'Ubuntu',sans-serif;} | ||
|
||
|
||
#partida, | ||
button { | ||
font-family: 'Ubuntu', sans-serif; | ||
} | ||
</style> | ||
</html> | ||
|
||
</html> |