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
<!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; |
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
<!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; |
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
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" |