-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
118 lines (111 loc) · 4.67 KB
/
blog.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
<!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">
<!-- CSS LINK -->
<link rel="stylesheet" href="script.css">
<link rel="stylesheet" href="script.js">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Blog | Karthik</title></head>
<body>
<!-------------------------------------------- HEADER SECTION -->
<header class="header" >
<a href="#" class="logo">
<img src="./images/image.png" alt="logo">
</a>
<nav class="navbar">
<a href="./index.html">home</a>
<a href="./about.html">about</a>
<a href="./menu.html" >menu</a>
<a href="./products.html" >products</a>
<a href="./review.html" >review</a>
<a href="./contact.html" >contact</a>
<a href="./blog.html"class="active" >blog</a>
</nav>
<div class="buttons">
<button id="search-btn">
<i class="fas fa-search"></i>
</button>
<button id="menu-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="search-form">
<input type="text" class="search-input" id="search-box" placeholder="Search">
<i class="fas fa-search"></i>
</div>
</div>
</header>
<!-- -------------------------------------------HEADER SECTION -->
<!-- -------------------------------------------BLOG SECTION -->
<section class="blog" id="blog">
<h1 class="heading">our <span>blog</span> </h1>
<div class="box-container">
<div class="box-full">
<div class="images">
<img src="./images/project.png" alt="">
</div>
<div class="content">
<a href="#" class="title">Project Details</a>
<span>by admin /24 April, 2023</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minus eos esse nesciunt cupiditate expedita.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box-full">
<div class="images">
<img src="./images/website.png" alt="">
</div>
<div class="content">
<a href="#" class="title">Project Details</a>
<span> by me/ 24 April, 2023</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minus eos esse nesciunt cupiditate expedita.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box-full">
<div class="images">
<img src="./images/site.png" alt="">
</div>
<div class="content">
<a href="#" class="title">Project Details </a>
<span>by me/24 April, 2023</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minus eos esse nesciunt cupiditate expedita.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
</div>
</section>
<!-- -------------------------------------------BLOG SECTION -->
<!-- -------------------------------------------FOOTER SECTION -->
<section class="footer">
<div class="search">
<input type="text" class="search-input" placeholder="Search">
<button class="btn btn-primary">search</button>
</div>
<div class="share">
<a href="#" class="fab fa-facebook"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
<div class="links">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#menu">menu</a>
<a href="#products">products</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
<a href="#blog">blog</a>
</div>
<div class="credit">
creaated by <span>Karthik</span> | all rights reserved!
</div>
</section>
<!-- -------------------------------------------FOOTER SECTION -->
<script src="./script.js"></script>
</body>
</html>