-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseo.html
71 lines (71 loc) · 3.55 KB
/
seo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Design</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<nav>
<img src="images/mikeyburn_pink_tangerine.svg"
class="mikeyburn_logo" alt="mikeyburn.com logo">
<div class="nav-links">
<a href="index.html">Home</a>
<a href="seo.html">Web Design</a>
<a href="socialads.html">Social Media</a>
</div>
</nav>
</header>
<main>
<div id="container">
<div id="first_seo">
<img src="images/seo_one.png" class="seo_one"
alt="search engine optimization image one">
</div>
<div id="seo_paragraph_1">
<h2>Web Design</h2>
<p>The digital presence of your business is crucial in today's world. Whether your past, current,
or potential customers are searching for your services or products, it's essential that your
online image is not just visually appealing but also conveys your company's identity. A robust
business can navigate the challenges of the current economy successfully. This is where my services
can help: I specialize in assisting your business in establishing a unique brand identity by creating
a custom website for you. If you already have a website but are unsatisfied with it, I also offer site
restructuring services. Let's embark on the journey to success together.</p>
</div>
<div id="second_seo">
<img src="images/seo_two.png" class="seo_two"
alt="search engine image">
</div>
<div id="seo_paragraph_2">
<h2>What is SEO?</h2>
<p>Having trouble getting your site noticed? It might be time to delve into
Search Engine Optimization, commonly known as SEO. While this subject can
seem complex, at its core, SEO requires thorough research. Optimizing your
site involves various elements such as naturally integrating key words, alternative
text for images, ensuring mobile friendliness, and even avoiding specific key
words. These actions are just small pieces of what search engines consider when
assessing a site's relevance and authority. And I'd be delighted to assist you with
this procedure.</p>
</div>
</div>
</main>
<footer>
<div id="copyright">
<p>Mikey Burn © 2024</p>
</div>
<div id="info">
<a href="site-plan.html">Site Plan</a>
</div>
<div id="icons_social">
<a href="https://www.instagram.com/_mikeyburn/"><img
src="images/instagram_pink.png"
alt="instagram icon"></a>
<a href="https://www.facebook.com/mikeyburn4"><img
src="images/facebook_pink_pink.png"
alt="facebook icon"></a>
</div>
</footer>
</body>
</html>