-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (56 loc) · 2.17 KB
/
index.html
File metadata and controls
66 lines (56 loc) · 2.17 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Project Page</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<style>
.jumbotron h1 {
font-size: 50px;
}
.project {
float: right;
}
ul {
margin: 0 auto 0 auto;
width: 50%;
}
ul li {
height: 55px;
}
ul li:hover {
background: #eee;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>FullStack Web Developer Course</h1>
<p>Little Projects from the course</p>
<a href="https://github.com/rubik951/FullStack-Course" class="btn btn-primary" target="_blank">Visit Github</a>
</div>
<div class="row">
<div class="col-md-12">
<ul class="list-group">
<li class="list-group-item">
<a href="CSS3 dropdown menu/index.html" class="link" target="_blank">CSS3 Dropdown menu</a>
<a href="https://goo.gl/dweXqw" class="btn btn-default project" target="_blank">Visit project</a>
</li>
<li class="list-group-item">
<a href="My note/index.html" target="_blank">JavaScript Note</a>
<a href="https://goo.gl/DELjWU" class="btn btn-default project" target="_blank">Visit project</a>
</li>
<li class="list-group-item">
<a href="Github AJAX Project/index.html" target="_blank">Github Profile Finder</a>
<a href="https://goo.gl/9piy9z" class="btn btn-default project" target="_blank">Visit project</a>
</li>
<li class="list-group-item">
<a href="jQuery Image Slider/index.html" target="_blank">CoffeeTech Slider</a>
<a href="https://goo.gl/MvmRpn" class="btn btn-default project" target="_blank">Visit project</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>