Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<!DOCTYPE html>
<head>
<title>Anna Dowlin</title>
<style>
body {
<!DOCTYPE html> #type of Document.
<head> #head tag open.
<title>Anna Dowlin</title> #title tag create and close.
<style> #style tag open of document.
body { #body function create.
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{
p{ #paragraph method.
font-size:22px;
}
input{
Expand All @@ -22,11 +22,11 @@
color: white;
}

</style>
</head>
<body>
</style> #close the style tag.
</head> #close the head tag.
<body> #body tag open.
<img src="/assets/anna.png">
<p>Hi! I'm Anna, a NYC-based marketer. Say hello!</p>
<input type="email" placeholder="Your email">
<input type="submit">
</body>
<input type="submit">
</body> #body tag close.