-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp.html
79 lines (77 loc) · 1.73 KB
/
temp.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 lang="en">
<head>
<meta charset="utf-8"/>
<title>Carousel</title>
<style>
*{
margin:0;
padding: 0;
}
.app{
width:100%;
}
.container{
margin:0 200px;
}
.jumbotron-heading{
padding:50px 60px;
background-color: gray;
}
.jumbotron-heading p{
margin-bottom: 20px;
}
.card{
float:left;
width:31%;
padding: .75rem;
margin-bottom: 2rem;
border: 1px solid #efefef;
text-align: center;
}
.card > img{
margin-bottom: .75rem;
border-radius: 100px;
}
.clearfix::before,.clearfix::after{
content:"";
display: table;
clear:both;
}
</style>
</head>
<body>
<div id="app">
<div class="container ">
<section class="jumbotron-heading">
<div>
<p>Search Github Users</p>
<input type="text" placeholder="enter the name you search" />
<button >Search</button>
</div>
</section>
<div class="row clearfix">
<div class="card">
<a href="http://github.com/reactjs" target="_blank"></a>
<img src="img/43/01.jpg" style="width:100px;height:100px"/>
<p class="card-text">reactjs</p>
</div>
<div class="card">
<a href="http://github.com/reactjs" target="_blank"></a>
<img src="img/43/01.jpg" style="width:100px;height:100px"/>
<p class="card-text">reactjs</p>
</div>
<div class="card">
<a href="http://github.com/reactjs" target="_blank"></a>
<img src="img/43/01.jpg" style="width:100px;height:100px"/>
<p class="card-text">reactjs</p>
</div>
<div class="card">
<a href="http://github.com/reactjs" target="_blank"></a>
<img src="img/43/01.jpg" style="width:100px;height:100px"/>
<p class="card-text">reactjs</p>
</div>
</div>
</div>
</div>
</body>