Skip to content

Instantly share code, notes, and snippets.

@dangayle
Created May 28, 2014 16:59
Show Gist options
  • Save dangayle/6ebe30a9ae76883d081e to your computer and use it in GitHub Desktop.
Save dangayle/6ebe30a9ae76883d081e to your computer and use it in GitHub Desktop.
Basic html/css/python
def hello_world(name=None):
if name is None:
name = "world"
print("Hello {name}".format(name=name))
hello_world("Dan")
<!DOCTYPE html>
<html>
<head>
<title>This is what HTML looks like</title>
</head>
<body>
<h1>This is what HTML looks like</h1>
<p>Pretty plain.</p>
</body>
</html>
body {font-family:"Comic Sans MS", "Comic Sans", sans-serif;}
h1 {color:red;}
p {font-size:18px;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment