-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpost-page.html
122 lines (103 loc) · 3.87 KB
/
post-page.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Posts </title>
<!-- Linking Custom CSS file -->
<link rel="stylesheet" href="style.css">
<!-- Linking BoxIcons CSS file -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- HEADER SECTION BEGINS -->
<header>
<!-- Navigation Bar -->
<div class="nav container">
<!-- Logo -->
<a href="index.html" class="logo"> <span>Life</span>.log()</a>
<!-- Login and Sign Up Button -->
<a href="#" class="signup"> Sign Up</a>
<a href="#" class="login"> Login </a>
</div>
</header>
<!-- HEADER SECTION ENDS -->
<!-- POST Content Starts -->
<section class="post-header">
<div class="header-content post-container">
<!-- Back to home -->
<a href="index.html" class="back-home"> Back to Home </a>
<!-- Title -->
<h1 class="header-title">
How to get started with Mobile Application Development
</h1>
<img src="images/post-3.jpg" class="header-img">
</div>
</section>
<!-- POSTS SECTION STARTS -->
<section class="post-content post-container">
<h2 class="sub-heading">Getting started:</h2>
<p class="post-text"> Will fill this in later
GIbberish for now, Do you know the story of a movie called? ABCASCBUIEBCVSDHCBAICJ </p>
<h2 class="sub-heading"> Resources: </h2>
<p class="post-text"> Will fill this in later
GIbberish for now, Do you know the story of a movie called? ABCASCBUIEBCVSDHCBAICJ </p>
<h2 class="sub-heading"> How to learn by practise?</h2>
<p class="post-text"> Will fill this in later
GIbberish for now, Do you know the story of a movie called? ABCASCBUIEBCVSDHCBAICJ </p>
<h2 class="sub-heading"> Conclusion</h2>
<p class="post-text"> Will fill this in later
GIbberish for now, Do you know the story of a movie called? ABCASCBUIEBCVSDHCBAICJ </p>
</section>
<!-- POSTS SECTION ENDS -->
<!-- Share Section BEGINS -->
<div class="share post-container">
<span class="share-title"> Share this article </span>
<div class="social">
<a href="#">
<i class="bx bxl-instagram"></i>
</a>
<a href="#">
<i class="bx bxl-twitter"></i>
</a>
<a href="#">
<i class="bx bxl-github"></i>
</a>
<a href="#">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#">
<i class="bx bxl-facebook"></i>
</a>
</div>
</div>
<!-- Share Section Ends -->
<!-- FOOTER SECTION BEGINS -->
<div class="footer container">
<p> © ROHIT | All Rights Reserved | </p>
<div class="social">
<a href="#">
<i class="bx bxl-instagram"></i>
</a>
<a href="#">
<i class="bx bxl-twitter"></i>
</a>
<a href="#">
<i class="bx bxl-github"></i>
</a>
<a href="#">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#">
<i class="bx bxl-facebook"></i>
</a>
</div>
</div>
<!-- FOOTER SECTION ENDS -->
<!-- Linking JQuery Script -->
<script src="https://code.jquery.com/jquery-3.6.1.js" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<!-- Linking the Custom JavaScript File -->
<script src="script.js"></script>
</body>
</html>