-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost-page4.html
77 lines (67 loc) · 3.29 KB
/
post-page4.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
<!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>Post Page</title>
<link rel="shortcut icon" href="image/logo png.png" type="image/x-icon">
<!-- Link To CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Box Icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.4.0/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<!-- Header -->
<header>
<!-- Nav -->
<div class="nav container">
<!-- Logo -->
<a href="index.html" class="logo">Our<span>Blog</span></a>
<!-- Login -->
<a href="#" class="login">Home</a>
</div>
</header>
<!-- Post Content -->
<section class="post__header" style="background-image: url(image/body-bg.jpg)">
<div class="overlay1"></div>
<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">Do you need a designer for your personal brand?</h1>
<!-- Post Image -->
<img src="image/design1.webp" alt="" class="post__img">
</div>
</section>
<section class="post__content post__container">
<h2 class="seb__headeng">Connecting the designer with the personal brand</h2>
<p class="post__text">I don't have personal branding needs. However, depending on your specific requirements and preferences, having a designer for your personal brand can be beneficial. A designer can help create visual assets, such as a logo, website design, and custom graphics, that align with and enhance your brand identity. They can also assist in creating a cohesive and professional look and feel across various platforms, which can be crucial for making a strong impression and attracting your desired audience. Ultimately, whether or not you need a designer for your personal brand will depend on your goals, budget, and design expertise.</p>
<!-- Profile -->
<div class="share post__container">
<span class="share__title">Share this article</span>
<div class="social">
<a href="#"><i class="bx bxl-facebook"></i></a>
<a href="#"><i class="bx bxl-twitter"></i></a>
<a href="#"><i class="bx bxl-instagram"></i></a>
<a href="#"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</section>
<!-- Footer -->
<div class="footer container">
<p>© All Right Reserved</p>
<div class="social">
<a href="#"><i class="bx bxl-facebook"></i></a>
<a href="#"><i class="bx bxl-twitter"></i></a>
<a href="#"><i class="bx bxl-instagram"></i></a>
<a href="#"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
<!-- JQuery Link -->
<script src="https://code.jquery.com/jquery-3.6.4.js" integrity="sha256-a9jBBRygX1Bh5lt8GZjXDzyOB+bWve9EiO7tROUtj/E=" crossorigin="anonymous"></script>
<!-- Link To js -->
<script src="js/app.js"></script>
</body>
</html>