-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<main>
<header>
<div class="content header-content">
<img class="udacity-logo" src="http://cameronwp.github.io/cpcom/static/udacity_logo.svg" alt="Udacity Logo">
<h1>Front-End Apprentice</h1>
</div>
</header>
<section class="hero">
<div class="content">
<img class="my-picture" src="images/ae.jpg" alt="This is a picture of me">
<p class="iama">My name is...</p>
<p class="my-name my-info">Andy Edwards</p>
<p class="iama">I want to be...</p>
<p class="my-info">a Web Front-End Expert</p>
</div>
</section>
<section class="about-me content">
<p class="iama">I live in...</p>
<p class="my-info">Des Moines, Iowa</p>
<p class="iama">My favorite way to work is...</p>
<p class="my-info">In the evenings.</p>
<p class="iama">In my free time, I like to...</p>
<p class="my-info">Ride my bike!</p>
</section>
</main>
</body>
</html>