-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
113 lines (108 loc) · 5.07 KB
/
about.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
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/utilities.css" />
<link rel="stylesheet" href="css/style.css" />
<title>RedefinIT | About Us</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container-wide flex">
<a class="monogram" href="index.html"
><h1 class="logo">
Redefin<span class="nav--highlight">IT</span>
</h1></a
>
<nav class="flex">
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<div class="nav flex">
<div class="navsecondary flex">
<ul class="navlist flex">
<li><a class="navlink" href="index.html">Home</a></li>
<li><a class="navlink" href="about.html">About Us</a></li>
<li><a class="navlink" href="products.html">Products</a></li>
<li><a class="navlink" href="blog.html">Blog</a></li>
<li><a class="navlink" href="documentation.html">Docs</a></li>
<li><a class="navlink" href="contact-form.html" target="_blank">Contact Us</a></li> </ul>
<!-- <a href="trial-form.html" class="mobile-btn btn" target="_blank">TRY IT NOW</a> -->
</div>
</div>
</nav>
</div>
</div>
<!-- About RedefinIT -->
<!-- <h2 class="text-center">About RedefinIT</h2>
<section class="about-company container-mobile grid">
<div class="card-grid">
<div class="subhead">Something to highlight</div>
<p>Add content like why someone must choose you and your product. What makes you better than the competition. Eum ad ex, repellat ullam quibusdam ducimus atque quos voluptates corrupti laudantium.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias magni quis ipsum, molestiae error sequi optio eligendi mollitia, ab veniam omnis veritatis similique dolorum est alias, quod temporibus consequuntur inventore.</p>
</div>
<div class="illustration m-1"><img src="images/placeholder1.jpg" alt=""></div>
<div class="illustration m-1"><img src="images/placeholder1.jpg" alt=""></div>
<div class="card-grid">
<div class="subhead">Something to highlight</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum ad ex, repellat ullam quibusdam ducimus atque quos voluptates corrupti laudantium.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias magni quis ipsum, molestiae error sequi optio eligendi mollitia, ab veniam omnis veritatis similique dolorum est alias, quod temporibus consequuntur inventore.</p>
</div>
</section> -->
<!-- About Us -->
<section class="about-us container-mobile" id="about-us">
<h2 class="main-heading text-center" >About Us</h2>
<p class="text-center">RedefinIT is an IT Software startup founded in 2021 with the goal of redefining and simplifying the management and automation of bare-metal server infrastructure. The company is headquartered in Bengaluru, India. The flagship product BMA is API-driven tool that can deploy OS and Firmware on bare-metal servers. </p>
<div class="grid">
</div>
<p class="contact-text">You can write to us at <strong>[email protected]</strong></p>
</section>
<!-- Footer -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-4">
<div>
<a class="monogram" href="index.html"
><h1 class="logo">
Redefin<span class="nav--highlight">IT</span>
</h1></a
>
<p>RedefinIT Technologies Pvt Ltd</br>
Bengaluru, Karnataka</br>
India
</p>
<p>Copyright © 2021</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact-form.html" target="_blank">Contact Us</a></li>
</ul>
</nav>
<nav>
<ul>
<li><a href="#">Terms and Usage Policy</a></li>
<li><a href="#">Documentation </a></li>
</ul>
</nav>
<div class="social">
<a href="https://www.linkedin.com/company/redefinit" target="_blank"
><i class="fab fa-linkedin fa-2x"></i
></a>
<a href="https://www.youtube.com/channel/UCzE3CYaQA4l9CZa3RyL4hyw/videos"><i class="fab fa-youtube fa-2x"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>