Skip to content

Instantly share code, notes, and snippets.

Created October 18, 2013 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/7043366 to your computer and use it in GitHub Desktop.
Save anonymous/7043366 to your computer and use it in GitHub Desktop.
Dash: Build a Personal Website html code with embedded css.
<!DOCTYPE html>
<head>
<title>Anna Dowlin</title>
<style>
body {
text-align: center;
background: url("http://dash.ga.co/assets/anna-bg.png");
background-size: cover;
background-position: center;
color: white;
font-family: helvetica;
}
p {
font-size: 22px;
}
input {
border: 0;
padding: 10px;
font-size: 18px;
}
input[type="submit"] {
color: white;
background: red;
}
</style>
</head>
<body>
<img src="https://dash.generalassemb.ly/assets/anna.png">
<h1>Anna Dowlin</h1>
<p>Hi! I'm Anna, a NYC-based marketer. Say hello!</p>
<input type="email" placeholder="Your email">
<input type="submit">
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment