forked from harsh250895/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
78 lines (67 loc) · 3.88 KB
/
services.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
<!doctype html><!-- html5 doctype declaration-->
<html class="no-js" lang="">
<!-- "no-js"class is provided in order to allow more easy and explicit adding of custom styles based on whether JavaScript is disabled (.no-js) or enabled (.js).-->
<!-- lang="" specifies language of the content by adding the lang attribute-->
<head> <!-- header-->
<meta charset="utf-8"><!-- charset should be declared within the first 512MB of the html code in order to prevent maliscious code and hijacking-->
<meta http-equiv="x-ua-compatible" content="ie=edge"><!-- ensure the latest rendering engine version of IE (Internet Exploder) is being used-->
<title>IntelliSolutions</title>
<meta name="description" content=""><!-- provides a description of the content-->
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- sends a message to the browser to render as a mobile site -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="/img/travel-smart-logo.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css"><!-- enables browsers to render all elements more consistently and in line with modern standards. -->
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script><!-- Modernizr helps older browsers handle HTML5 elements -->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]--><!-- checks the version of the browser and if outdated sends a message to the user to update the browser-->
<!-- Add your site or application content here -->
<div id="wrapper">
<div id ="header">
<div id="logo">
<div id="img">
<a href="#"></a>
</div>
</div>
<div id="menu">
<ul>
<li> <a href="index.html">Home</a> </li>
<li> <a href="services.html">Services</a> </li>
<li> <a href="index.html">Contact</a> </li>
</ul>
</div>
</div>
<div id="inquiry">
<div id="inquiry1">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce posuere erat eget massa placerat,
rhoncus pretium est volutpat. Morbi consectetur nisi orci, vel luctus arcu condimentum eu. Etiam
varius elit id nisl sodales egestas. Fusce tristique tellus eget bibendum euismod. Cras ullamcorper,
risus ac consequat volutpat, nulla mauris tempor ipsum, non dignissim magna metus vel tortor. Nunc
rhoncus consequat lectus, vitae consectetur eros congue eget. Praesent arcu lacus, ornare ac vehicula
sed, dapibus ullamcorper nunc. Proin vel rhoncus mauris. Interdum et malesuada fames ac ante ipsum
primis in faucibus.
</div>
<div id="inquiry2">
hi my name is joel
</div>
</div>
<div id="footer"><h4>2016 IntelliSolutions Inc.</h4></div>
</div>
<!-- Local Jquery is included in order to facilitate offline development -->
<script src="https://code.jquery.com/jquery-{{JQUERY_VERSION}}.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-{{JQUERY_VERSION}}.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<!-- an optimized version of the Google Universal Analytics tracking code is included-->
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-86088603-1','auto');ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>