-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
94 lines (86 loc) · 2.67 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
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
main {
margin-top: 45px;
}
body {
margin:0 ;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.topimg {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('img/main.jpg');
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
}
.toptxt {
text-align: center;
padding: 5%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: white;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(53, 91, 134);
color: white;
text-align: center;
}
.mainrow {
display: flex;
}
.column {
flex: 50%;
padding: 10px;
text-align: center;
height: 300px;
margin-top: 200px;
}
.column a {
text-decoration: none;
}
</style>
</head>
<body>
<nav>
<a href="home.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="about.html"><i class="fa fa-info-circle" aria-hidden="true"></i> About</a>
<a href="contactus.html"><i class="fa fa-commenting" aria-hidden="true"></i> Contact Us</a>
</nav>
<main>
<div class="topimg">
<div class="toptxt">
<h1 style="font-size: 40px;">Knupp Realtor Group LLC</h1>
<p>Helping people find homes since 2022!</p>
</div>
</div>
<div class="mainrow">
<div class="column">
<h2>Looking to buy a home?</h2>
<p>Come let us show you what we have to offer.
<br>Click the link below to browse our listings!</p>
<a href="featured.html">Browse Featured</a>
</div>
<div class="column">
<img src="img/homecenter.jpeg" style="border-radius: 50%; width: 550px; height: 450px; margin-top: -120px;">
</div>
<div class="column">
<h2>Ready to sell your home?</h2>
<p>Click the link below to fill out a contact form so one of our
<br>agents can help get you on the market!</p>
</div>
</div>
</main>
<footer>
<p>Knupp Realator Group LLC ©2022 Fake Website. NOT LEGIT!</p>
</footer>
</body>
</html>