Skip to content

Commit 0477deb

Browse files
committed
0.0.1
0 parents  commit 0477deb

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
Thumbs.db
3+
.sass-cache
4+
node_modules
5+
dist
6+
.idea
7+
test

index.html

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Codelf</title>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<meta http-equiv="x-ua-compatible" content="ie=edge">
8+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css"
9+
integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
10+
<style>
11+
.main-container{
12+
padding: 40px;
13+
}
14+
</style>
15+
</head>
16+
<body>
17+
<section class="main-container">
18+
<div class="row">
19+
<div class="col-lg-12">
20+
<div class="input-group">
21+
<input type="text" class="form-control" placeholder="Search for...e.g.product">
22+
<span class="input-group-btn">
23+
<button class="btn btn-secondary" type="button">Search</button>
24+
</span>
25+
</div>
26+
</div>
27+
</div>
28+
</section>
29+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
30+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js"
31+
integrity="sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7"
32+
crossorigin="anonymous"></script>
33+
<script>
34+
35+
</script>
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)