-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (66 loc) · 2.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/main.css">
<title>Kamil's Udacity Portfolio</title>
</head>
<body>
<div class="container-fluid">
<header class="row">
<div class="col-md-2">
<img class="img-responsive" id="logo" src="img/logo.png" alt="Logo">
</div>
<div class="col-md-6">
<h1 id="top">John Doe</h1>
<h4 id="sub-top">Front-end Ninja</h4>
<hr>
</div>
</header>
<div class="row">
<div class="col-md-12">
<img class="img-responsive" src="img/season.jpg" alt="Season">
</div>
</div>
<div class="row">
<main>
<div class="col-md-12">
<h2 id="mid">Featured Work</h2>
</div>
<div class="col-md-4">
<article>
<img id="img-one" class="img-responsive" src="img/Appify.PNG" alt="Appify">
<h3 id="name">Appify</h3>
<p>github.com/udacity/Appify/</p>
</article>
</div>
<div class="col-md-4">
<article>
<img id="img-two" class="img-responsive" src="img/Sunflower.PNG" alt="Sunflower">
<h3 id="name-two">Sunflower</h3>
<p>github.com/udacity/Sunflower/</p>
</article>
</div>
<div class="col-md-4">
<article>
<img id="img-three" class="img-responsive" src="img/Bokeh.PNG" alt="Bokeh">
<h3 id="name-three">Bokeh</h3>
<p>github.com/udacity/Bokeh/</p>
</article>
</div>
</main>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<p class="text-center">© copyright 2017</p>
</div>
</div>
</div>
</body>
</html>