Skip to content

Instantly share code, notes, and snippets.

View jesushilarioh's full-sized avatar
🎯
Focusing

Jesus Hilario Hernandez jesushilarioh

🎯
Focusing
View GitHub Profile
@jesushilarioh
jesushilarioh / traceroute.php
Created August 31, 2019 04:45 — forked from iwek/traceroute.php
PHP Script for Traceroute Pingdom API
<?php
$host = $_GET["host"];
if (empty($host)) {
echo 'Please provide host';
} else {
//create the url for API call
$url = "https://api.pingdom.com/api/2.0/traceroute?host=".$host;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML1</title>
</head>
<!-- Body -->
<body>
<!-- Main Header -->
@jesushilarioh
jesushilarioh / meta-tags.md
Created September 18, 2017 17:37 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@jesushilarioh
jesushilarioh / footer.html
Last active March 11, 2017 06:52
Bootstrap Layout #1