forked from malathik1413507/malathiwebdesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (124 loc) · 5.36 KB
/
index.html
File metadata and controls
142 lines (124 loc) · 5.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="identification">
<div class="container">
<ul class="value">
<li><a href="#">HOME</a></li>
<li><a href="#">SERVICE</a></li>
<li><a href="#">OUR WORKS</a></li>
<li><a href="#">CONTECT US</a></li>
</ul>
</div>
</nav>
<header class="attract">
<div class="container">
<div class="row">
<div class="col-sm-9">
<h2>WE ARE <span>CREATIVE</span> AGENCY</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consectetur commodi ab tempore, ullam reprehenderit, numquam vel voluptatibus impedit magnam! Quaerat, praesentium! Deserunt, unde pariatur odio mollitia maxime dignissimos eveniet, aliquid.</p>
<button type="button" class="btn btn-yellow">READ MORE</button>
</div>
</div>
</div>
</header>
<section class="services">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="icon-details">
<i class="fa fa-truck" aria-hidden="true"></i>
<h3>WEB DESIGN</h3>
</div>
</div>
<div class="col-sm-4">
<div class="icon-details">
<i class="fa fa-train" aria-hidden="true"></i>
<h3>WEB DEVELOPMENT</h3>
</div>
</div>
<div class="col-sm-4">
<div class="icon-details">
<i class="fa fa-windows" aria-hidden="true"></i>
<h3>DIGITAL MARKETING</h3>
</div>
</div>
</div>
</div>
</section>
<section class="our-works">
<div class="container">
<h2><span>OUR </span>WORKS</h2>
<div class="row">
<div class="col-sm-4">
<div class="news-detail">
<img src="image/Rectangle-7.jpg" alt="">
</div>
</div>
<div class="col-sm-4">
<div class="news-detail">
<img src="image/Rectangle8.jpg" alt="">
</div>
</div>
<div class="col-sm-4">
<div class="news-detail">
<img src="image/Rectangle8copy.jpg" alt="">
</div>
</div>
</div>
</div>
</section>
<section class="Contact-us">
<div class="container">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<h2><span>Contact</span> Us</h2>
<form>
<input type="text" placeholder="FULL NAME" class="form-control">
<input type="text" placeholder="EMAIL ADDRESS" class="form-control">
<textarea name="" id="" cols="30" rows="10" placeholder="MESSEGE" class="form-control"></textarea>
<button type="button" class="btn btn-yellow">READ MORE</button>
</form>
</div>
<div class="col-sm-3"></div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-sm-12">
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-skype" aria-hidden="true"></i>
<i class="fa fa-twitter" aria-hidden="true"></i>
<i class="fa fa-linkedin" aria-hidden="true"></i>
<p>©Develop By Malathi kandhasamy and vigneshwar sridharan</p>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>