-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
97 lines (95 loc) · 3.01 KB
/
Copy pathblog.html
File metadata and controls
97 lines (95 loc) · 3.01 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog page</title>
<link rel="stylesheet" href="allCss/Blog.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="index.html">Home</a></li>
<li>Blog</li>
<li>Content Us</li>
<li>About Us</li>
</ul>
</div>
<div class="card-container">
<div class="blog">
<div class="tableRow">
<div class="LeftColumn">
<img
class="Img"
src="assets/workspace1.jpg"
alt="imagerightcloumn"
/>
</div>
<div class="RightColumn">
<h1 class="Title">
The power of open work space
<!-- <a href="firstblog.html">The power of open work space</a> -->
</h1>
<p class="Para">
This is your blog post. Great looking images make your blog posts
more visually compelling for your audience, so choose media that
really wows. Adding fun an...
</p>
</div>
</div>
</div>
<div class="blog">
<div class="tableRow">
<div class="LeftColumn">
<img
class="Img"
src="assets/workspace2.jpg"
alt="imagerightcloumn"
/>
</div>
<div class="RightColumn">
<h1 class="Title">How to create synergy in the workplace</h1>
<p class="Para">
This is your blog post. To really engage your site visitors we
suggest you blog about subjects that are related to your site or
business. Blogging is really...
</p>
</div>
</div>
</div>
<div class="blog">
<div class="tableRow">
<div class="LeftColumn">
<img
class="Img"
src="assets/workspace.jpg"
alt="imagerightcloumn"
/>
</div>
<div class="RightColumn">
<h1 class="Title">Brainstorm how-to: the wall of ideas</h1>
<p class="Para">
This is your blog post. Blogs are a great way to connect with your
audience and keep them coming back. They can also be a great way
to position yourself as...
</p>
</div>
</div>
</div>
</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/fetchBlogPage.js"></script>
</body>
</html>