-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 6.28 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>PORTFOLIO</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Overpass:200,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Overpass|Overpass+Mono" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/ob1.css" rel="stylesheet">
<script src="js/jquery-3.1.1.min.js">
</script>
<script src="js/bootstrap.min.js" type="text/javascript">
</script>
</head>
<body>
<section class="container">
<header class="row">
<article class="col-md-6">
<img alt="logo" class="img-responsive logo" src="images/AS_logo1.gif">
</article>
<article class="col-md-6 text-right">
<h1 class="text-right">ABHISHEK SINGLA</h1>
<h4 class="smalltext">TRAVEL IS LIFE</h4>
</article>
</header>
<section class="row">
<article class="col-md-12">
<hr>
</article>
</section>
<section class="row">
<article class="col-md-12">
<img alt="adventure_pics" class="img-responsive center-block" data-target="#project1" data-toggle="modal" src="images/adventures.jpg">
</article>
</section>
<section class="row">
<article class="col-md-12">
<h2>FEATURED WORK</h2>
</article>
</section>
<section class="row lowerdescription">
<article class="col-md-4">
<img alt="travel_pic" class="img-responsive" data-target="#project2" data-toggle="modal" src="images/travel.jpg">
<h3>TRAVEL</h3>
<p><a href="https://www.scoopwhoop.com/category/travel/">https://www.scoopwhoop.com/category/travel/</a></p>
</article>
<article class="col-md-4">
<img alt="food_pic" class="img-responsive" data-target="#project3" data-toggle="modal" src="images/food.jpg">
<h3>FOOD</h3>
<p><a href="https://en.wikipedia.org/wiki/Food">https://en.wikipedia.org/wiki/Food</a></p>
</article>
<article class="col-md-4">
<img alt="hotel_pic" class="img-responsive" data-target="#project4" data-toggle="modal" src="images/hotel.jpg">
<h3>HOTEL</h3>
<p><a href="https://www.tripadvisor.in/">https://www.tripadvisor.in/</a></p>
</article>
</section>
<div aria-hidden="true" aria-labelledby="myModalLabel" class="modal fade" id="project1" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">Favorite App Page</h4>
</div>
<div class="modal-body">
<img class="img-responsive" src="images/adventures.jpg"> This was my first project in this class. I learned a lot about HTML and CSS.I love To Travel,Wander Around New Places.
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
<div aria-hidden="true" aria-labelledby="myModalLabel" class="modal fade" id="project2" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">Favorite App Page</h4>
</div>
<div class="modal-body">
<img class="img-responsive" src="images/travel.jpg">
<p>This was my first project in this class. I learned a lot about HTML and CSS.Travelling Is An Integral Part Of an Adventure.The different modes be it plane,train,ship,car etc.</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
<div aria-hidden="true" aria-labelledby="myModalLabel" class="modal fade" id="project3" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">Favorite App Page</h4>
</div>
<div class="modal-body">
<img class="img-responsive" src="images/food.jpg">
<p>This was my first project in this class. I learned a lot about HTML and CSS.Food is something one cannot live without and i I love trying something new everytime.</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
<div aria-hidden="true" aria-labelledby="myModalLabel" class="modal fade" id="project4" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">Favorite App Page</h4>
</div>
<div class="modal-body">
<img class="img-responsive" src="images/hotel.jpg">
<p>This was my first project in this class. I learned a lot about HTML and CSS.While you are away from home ,it really matters where you stay.You love your journey even more if you stay at a comfortable place.</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
</section>
</body>
</html>