-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (53 loc) · 2.39 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
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Framework Test Page</title>
<link href="https://fonts.googleapis.com/css?family=Bellefair" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<header class="row">
<div class="col-md-6">
<img width="100" height="100" src="images/udacity-logo.jpg" class="img-responsive img-circle title-logo " alt="Udacity Logo">
</div>
<div class="col-md-6 text-right text-uppercase">
<h1 class="title-super text-black">MOHIT SHARMA</h1>
<h3>FRONT-END NINJA</h3>
</div>
</header>
<div class="row">
<div class="col-md-12"><hr></div>
</div>
<section class="row">
<div class="col-md-12">
<img src="images/mainimage.jpg" alt="image with written html code" class="img-responsive">
</div>
</section>
<section class="row">
<div class="col-md-12">
<h2 class="title-featured">Featured Work</h2>
</div>
</section>
<section class="row">
<article class="col-md-4 cen text-center">
<img class="img-responsive cen" alt="img 555x300" src="images/card.jpg" />
<h2 class="cardhead">APPIFY</h2>
</article>
<article class="col-md-4 cen text-center">
<img class="img-responsive cen" alt="img 555x300" src="images/card.jpg" />
<h2 class="cardhead">SUNFLOWER</h2>
</article>
<article class="col-md-4 cen text-center">
<img class="img-responsive cen" alt="img 555x300" src="images/card.jpg" />
<h2 class="cardhead">BOKEH</h2>
</article>
</section>
</div>
</body>
</html>