Skip to content

Instantly share code, notes, and snippets.

View GermanMendez0's full-sized avatar

GermanMendez0

View GitHub Profile
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tab pelicula</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.0/css/bootstrap.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<?php
//arreglos multidimensionales
$paises =[
"COLOMBIA" => [
"capital" =>"Bogota",
"moneda" => "Peso",
"poblacion" => 55,
"ciudades" => [ "Pereira" , "Neiva" , "Bogota"]
] ,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.0/css/bootstrap.css">
<title>Paises</title>
<style>
#vl{
@GermanMendez0
GermanMendez0 / image.php
Created May 4, 2020 22:25
Imagen con efecto sepia.
<?php
//perimite trabajar con imagenes digitales
//zona de clase
class imagen{
private $alto; //alto en pixeles
private $ancho; //ancho en pixeles
private $formato; //extension de la imagen
@GermanMendez0
GermanMendez0 / HojadeVida.html
Created April 29, 2020 01:13
Hoja de vida HTML y css
<!DOCTYPE html>
<html>
<head>
<title>Hoja de Vida</title>
<style type="text/css">
#marco{
border-radius: 50px;
background-color: #00000;
}
#cuerpo{
@GermanMendez0
GermanMendez0 / paises php
Created April 29, 2020 01:03
Actividad Sesion 28-04-2020
//web.php
Route::get('paises', function () {
$paises = ["Colombia" => [
"capital" => "Bogota",
"moneda" => "Peso",
"Poblacion" => 55,
"ciudades" => [
"Cali, ", "Medellin ", "Barranquilla"