Skip to content

Instantly share code, notes, and snippets.

View 105ron's full-sized avatar

Rhys B 105ron

View GitHub Profile
@105ron
105ron / file.html
Last active December 9, 2016 07:15
The result of the html5 Snippet
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>tYour title</title>
<link rel="stylesheet" type="text/css" href="reset or normalize css">
<link rel="stylesheet" type="text/css" href="Your stylesheet">
<meta name="keywords" content="meta keywords">
<meta name="description" content="meta description">
@105ron
105ron / html5.sublime-snippet
Last active December 9, 2016 07:15
Custom Snippet
<snippet>
<content><![CDATA[
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>${1:tYour title}</title>
<link rel="stylesheet" type="text/css" href="${2:reset or normalize css}">
<link rel="stylesheet" type="text/css" href="${3:Your stylesheet}">
@105ron
105ron / index2.html
Created December 1, 2016 09:43
Emmet created HTML
<navbar>
<div>
<h3></h3>
<span class="top-bar">
<ul class="links">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
@105ron
105ron / index.html
Created December 1, 2016 09:38
Making HTML elements with Emmet
navbar>div>h3+span.top-bar>ul.links>li*6
@105ron
105ron / Preferences.sublime-settings
Created December 1, 2016 09:04
Example of Sublime User Settings.
{
"ignored_packages":
[
"Vintage"
],
"spell_check": true,
"tab_size": 2,
"translate_tabs_to_spaces": true
}
<snippet>
<content><![CDATA[
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>${1:tYour title}</title>
<link rel="stylesheet" type="${2:reset or normalize css}">
<link rel="stylesheet" type="text/css" href="${3:Your stylesheet}">