-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (120 loc) · 6.11 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Lobster|Open+Sans+Condensed:300|Slabo+27px" rel="stylesheet">
<link rel="stylesheet" href="lib/animate.css">
<link rel="stylesheet" href="css/style.css">
<title>Meir's homepage</title>
</head>
<body>
<div class="welcome-container hidden animated bounceOutUp">
<h1>
Welcome to my gallery!
</h1>
<!--<button class="btn btn-success" onclick="showGallery()">View gallery</button>-->
</div>
<div class="container">
<div id="carousel-example-generic" class="carousel slide hidden animated bounceInDown" data-ride="carousel" data-interval="10000" data-pause="false">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
<li data-target="#carousel-example-generic" data-slide-to="6"></li>
<li data-target="#carousel-example-generic" data-slide-to="7"></li>
<li data-target="#carousel-example-generic" data-slide-to="8"></li>
<li data-target="#carousel-example-generic" data-slide-to="9"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active calculator">
<img src="img/school-blue-calculator-math-ruler-mathematics.png" alt="...">
<a class="enter" href="projects/calculator/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>My Calc</h1>
</div>
</div>
<div class="item sokoban">
<img src="img/sokoban.jpg" alt="...">
<a class="enter" href="projects/sokoban/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Sokoban</h1>
</div>
</div>
<div class="item mine-sweeper">
<img src="img/five_volatile_bomb_facts.jpg" alt="...">
<a class="enter" href="projects/minesweeper/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Minesweeper</h1>
</div>
</div>
<div class="item books-shop">
<img src="img/Positive-Psychology-for-Dummies.jpg" alt="...">
<a class="enter" href="projects/books-shop/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Books shop</h1>
</div>
</div>
<div class="item balloons">
<img src="img/luftballons_storm_fotolia_52124442_l.jpg" alt="...">
<a class="enter" href="projects/balloons/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Pop those balloons</h1>
</div>
</div>
<div class="item todos">
<img src="img/patrick-todo-list.jpg" alt="...">
<a class="enter" href="projects/todos/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Todos list</h1>
</div>
</div>
<div class="item cars-racing">
<img src="img/1473885074-e-type-250-gto.gif" alt="...">
<a class="enter" href="projects/cars-racing/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Cars racing</h1>
</div>
</div>
<div class="item safe-content">
<img src="img/1467340691687117.jpg" alt="...">
<a class="enter" href="projects/safe-content/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Safe content</h1>
</div>
</div>
<div class="item simple-calendar">
<img src="img/linux-calendar-featured.jpg" alt="...">
<a class="enter" href="projects/simple-calendar/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Simple calendar</h1>
</div>
</div>
<div class="item images-changing">
<img src="img/1-EDS03C9E_te5K3YyO91Hnw.png" alt="...">
<a class="enter" href="projects/images-changing/index.html"></a>
<div class="carousel-caption d-none d-md-block">
<h1>Images changing</h1>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<script src="lib/jquery/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
<script src="js/main.js"></script>
</body>
</html>