Skip to content

Instantly share code, notes, and snippets.

@alexcasche
alexcasche / shell script
Created May 23, 2017 14:56
shell script project
mkdir projects
cd projects
touch index.html styles.css README.md
echo '<link rel="stylesheet" href="styles.css"><h1>Hello World!</h1>' > index.html
echo 'h1{color:red;font-family:sans-serif;text-decoration:underline;}' > styles.css
echo "Hello World!" > README.md
read -p "Press Enter"
echo "Congratulations"
@alexcasche
alexcasche / index.html
Created May 23, 2017 18:44
honey-badger-html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Honey Badger</title>
<!--<link rel="stylesheet" type="text/css" href="./css/styles.css">-->
<style>
body {
padding: 0;
margin: 0;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Characters</title>
<!--<link rel="stylesheet" type="text/css" href="./css/styles.css">-->
<style>
nav ul, footer ul {
list-style: none;
padding: 0;