-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.6 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 href="styles.css" rel="stylesheet">
</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 Padawan</h1>
</div>
</header>
<section class="hero">
<div class="content">
<div class="hero-background">
<img class="my-picture" src="https://s3.amazonaws.com/udacity/front_end_dev/p0/murat_picture_300x300.jpg" alt="This is a picture of me, Murat Ozgul">
</div>
<p class="my-name">Murat OZGUL</p>
<p class="my-location">Mountain View, CA</p>
</div>
</section>
<section class="about-me content">
<p class="iama">I want to be...</p>
<p class="my-info">A software engineer</p>
<p class="iama">My favorite way to work is...</p>
<p class="my-info">In the mornings and lots of tea</p>
<p class="iama">In my free time, I like to...</p>
<p class="my-info">Cook or play computer games</p>
</section>
</main>
</body>
</html>