-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (82 loc) · 3.32 KB
/
Copy pathindex.html
File metadata and controls
85 lines (82 loc) · 3.32 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
<!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.0">
<title>Company Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arvo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Create Nav Bar -->
<nav role="navigation" class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img src="images/weblogo.png" alt="Logo" class="logo" /></a>
<button type="button" class="navbar-toggle" data-target="#navbarCollapse" data-toggle="collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbarCollapse">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Create Header -->
<div class="jumbotron">
<div class="container">
<h1>Looking to make an Awesome Website</h1>
</div>
</div>
<!-- Create icon with text -->
<div class="icons">
<div class="container text-center">
<div class="row">
<div class="col-md-4">
<img src="images/money.png" class="bodyImage">
<h2>Price it</h2>
<p>Get in touch for an immediate to obligate quote!</p>
</div>
<div class="col-md-4">
<img src="images/plan.png" class="bodyImage">
<h2>Plan it</h2>
<p>We will agree on a deadline and commit to it.</p>
</div>
<div class="col-md-4">
<img src="images/finish.png" class="bodyImage">
<h2>Make it</h2>
<p>We will deliver your website on time with the best quality.</p>
</div>
</div>
</div>
</div>
<!-- Create Contact Button -->
<div class="contact">
<div class="container text-center">
<a href="#" class="btn">Get in Touch</a>
</div>
</div>
<!-- Create Footer -->
<div class="footer">
<div class="container">
<p>© Develop with Samran</p>
</div>
</div>
<!-- jquery cdn -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>