-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (64 loc) · 3.1 KB
/
index.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
<html lang="en">
<head>
<!-- Meta Data -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/05fd45b164.js" crossorigin="anonymous"></script>
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<header class="nav">
<a href="./index.html"><img src="./photos/Screenshot 2024-04-29 193559.png" alt="logo" class="logo"></a>
<nav class="navBar">
<ul class="navLinks">
<li><a href="./index.html">Home</a></li>
<li><a href="./Services.html">Services</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./Contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- Hero -->
<div class="hero flexContainer">
<img class="photo flexBox" src="./photos/john-schnobrich-FlPc9_VocJ4-unsplash.jpg" alt="Software Picture">
<H1 class="blueText flexBox">Uberrando</H1>
<h3 class="greyText flexBox">The Future of Software Design and Services</h3>
</div>
<!-- Welcome Message - link to about-->
<div class="border flexContainer borderLine">
<h1 class="blueText flexBox">Who We Are</h1>
<p class="greyText flexBox">Here at Uberrando we strive to be on the forefront of the latest technology and trends to deliver the best possible outcomes to our customers</p>
<a class="articleButton flexBox" href="./about.html"><button class="articleButton" >About Us</button></a>
</div>
<!-- Article - link to services -->
<div class="flexContainer borderLine">
<h1 class="blueText flexBox">What We Do</h1>
<p class="greyText flexBox">We take your ideas and make them a reality. If it is within our scope, we will make it look dope!</p>
<a class="articleButton flexBox" href="./Services.html"><button class="articleButton">Services</button></a>
</div>
<!-- Learn more - link contact page -->
<div class="flexContainer borderLine">
<h1 class="blueText flexBox">Any Questions?</h1>
<p class="greyText flexBox">If you want to get to know more about Uberrando, or our services you can contact us any time</p>
<a class="articleButton flexBox" href="./Contact.html"><button class="articleButton">Contact</button></a>
</div>
<!-- Footer -->
<footer class="foot footContainer">
<ul class="footLinks footPages footBox">
<li><a href="./index.html">Home</a></li>
<li><a href="./Services.html">Services</a></li>
<li><a href="./about.html">About Uberrando</a></li>
<li><a href="./Contact.html">Contact Us</a></li>
</ul>
<ul class="footLinks footSocials footBox">
<li><a href="https://www.facebook.com"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="https://www.github.com"><i class="fa-brands fa-github"></i></a></li>
<li><a href="https://www.linkedin.com"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
<p class="footBox">Copyright Uberrando 2024 All rights Reserved</p>
</footer>
</body>
</html>