-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite4.html
110 lines (100 loc) · 5.83 KB
/
website4.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
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
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<header>
<nav class="navbar navbar-expand-lg navbar-light ">
<div class="container-fluid">
<a class="navbar-brand" href="#"> <img src="https://sandbox.elemisthemes.com/assets/img/logo-dark.png" alt="" width="100" height="24"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<form class="d-flex">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">
<button class="btn" style="background-color: rgb(0, 225, 255); border-radius: 20px;" type="submit">Search</button>
</a>
</li>
</ul>
</form>
</div>
</div>
</nav>
</header>
</div>
<section class="container py-3" >
<div class="card mb-3 py-5" style="max-width: 100%; align-items: center; border: none;">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body" style="text-align: left;">
<h5 class="card-title" style="font-size: 80px; font-weight: 400; ">A digital agency <br>specializing on <br> <span style="color: cornflowerblue;"> 3D animation </span> </h5>
<p class="card-text">We are an award winning design agency <br>that strongly believes in the power of creative ideas. </p>
<span><a class="btn btn-lg btn-primary rounded-pill me-2">Get Started</a></span>
</div>
</div>
<div class="col-md-4">
<img src="https://sandbox.elemisthemes.com/assets/img/illustrations/i21.png" class="img-fluid " >
</div>
</div>
</div>
</section>
<section class="container">
<div style="text-align: center;">
<p>Trusted by over 2K+ clients across the world</p>
</div>
<div class="row row-cols-7 ">
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c1.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c2.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c3.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c4.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c5.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c6.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col">
<img src="https://sandbox.elemisthemes.com/assets/img/brands/c7.png" class="img-fluid rounded-start" alt="...">
</div>
</div>
</section>
</body>
</html>