-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (83 loc) · 3.45 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
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Big Smiles Consulting Group</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="banner">
<div class="left-banner">
<img src="./images/logo.svg" alt="logo" class="logo">
<p>BIG Smiles Consulting Group</p>
</div>
<ul>
<li><a href="./about-us">About Us</a></li>
<li><a href="./careers">Careers</a></li>
<li><a href="./countact">Contact</a></li>
</ul>
</div>
<div class="intro">
<div class="panel">
<h1>Our Consulting Group is Awesome</h1>
<p>Big Smiles Consulting promises great work that will leave a big smile on your face.
Our team is filled with industry leading smiles and brings with it a proven record of success.</p>
<button>Get a Quote</button>
</div>
<img src="./images/team.jpg" alt="team">
</div>
<div class="content">
<h1>Meet the Team</h1>
<div class="team">
<div class="emp">
<img src="./images/chris.jpg" alt="chris">
<h2>Chris</h2>
<p class="role">Data Analytics</p>
<p>Will scrub that data and find the trends gauranteed to get your users beaming from ear to ear.</p>
</div>
<div class="emp">
<img src="./images/margaret.jpg" alt="margaret">
<h2>Margaret</h2>
<p class="role">UX</p>
<p>Knows how to create a user experience that will turn that frown upside down.</p>
</div>
<div class="emp">
<img src="./images/samuel.png" alt="samuel">
<h2>Samuel</h2>
<p class="role">Marketing</p>
<p>Certified expert at knowing how to get a smile out of anyone.</p>
</div>
<div class="emp">
<img src="./images/beth.jpg" alt="beth">
<h2>Beth</h2>
<p class="role">Development</p>
<p>She's smiling on the inside.</p>
</div>
<div class="emp">
<img src="./images/ralph.jpg" alt="ralph">
<h2>Ralph</h2>
<p class="role">Support</p>
<p>He supplies the coffee.</p>
</div>
</div>
</div>
<div class="quote">
<div class="container">
<p class="q">A smile remains the most inexpensive gift I can bestow on anyone and yet its powers can vanquish kingdoms.</p>
<p class="a">-Og Mandino</p>
</div>
</div>
<div class="border">
<div class="action">
<div class="action-content">
<h2>It's time! Bring a smile to your customers!</h2>
<p>Contact us now to get an outline of what we can do for your business and a fair quote for our services. We look forward to working with you.</p>
</div>
<button>Get a Quote</button>
</div>
</div>
<div class="footer">
Copyright <span>©</span> The Odin Project 2023
</div>
</body>
</html>