Created
May 28, 2014 16:59
-
-
Save dangayle/6ebe30a9ae76883d081e to your computer and use it in GitHub Desktop.
Basic html/css/python
This file contains hidden or 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
def hello_world(name=None): | |
if name is None: | |
name = "world" | |
print("Hello {name}".format(name=name)) | |
hello_world("Dan") |
This file contains hidden or 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> | |
<title>This is what HTML looks like</title> | |
</head> | |
<body> | |
<h1>This is what HTML looks like</h1> | |
<p>Pretty plain.</p> | |
</body> | |
</html> |
This file contains hidden or 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
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