-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
82 lines (77 loc) · 2.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home|RealTech</title>
<link rel="stylesheet" href="allCss/RealTech.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div id="header">
<img src="assets/logo.gif" alt="logo" />
<ul>
<li>
<a href="#section1">Home</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
<li><a href="#section5">Content Us</a></li>
<li><a href="#section3">About Us</a></li>
</ul>
</div>
<div id="section1">
<img src="assets/section1img.jpg" alt="section1img" />
</div>
<div id="section2">
<h1>WELCOME TO <br />REALTECH</h1>
<h3>The Advanced Way</h3>
</div>
<div id="section3">
<div id="tableRow">
<div id="RightColumn">
<img src="assets/firstImage.jpg" alt="imagerightcloumn" />
</div>
<div id="LeftColumn">
<h1>OUR TECHNOLOGY</h1>
<p>
Smart solutions are at the core of all that we do at ReelTech. Our
main goal is finding smart ways of using technology that will help
build a better tomorrow for everyone, everywhere. Click below to
learn more about the technology behind our Technology Company, or
get in touch to set up a meeting with one of our representatives.
</p>
</div>
</div>
</div>
<div id="section4">
<h1>Upcoming Events</h1>
<!-- new cards will be add here form JS! -->
</div>
<div id="section5">
<h1>GET IN TOUCH</h1>
<p>
Terry Francois Street San Francisco, CA 94158<br />
maymoona.al.boloshi@gmail.com<br />
123-456-7890
</p>
</div>
<div id="section6">
<!-- bring it from JS! -->
</div>
<div id="footer">
<ul>
<li><i class="fa fa-facebook" aria-hidden="true"></i></li>
<li><i class="fa fa-twitter" aria-hidden="true"></i></li>
<li><i class="fa fa-linkedin" aria-hidden="true"></i></li>
</ul>
<p>©2020 by ReelTech. Proudly created by Halima</p>
</div>
<script src="../jsFiles/fetchevents.js"></script>
<script src="../jsFiles/fetchblog.js"></script>
</body>
</html>