Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Solution for Technigo Coding Challenge</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Yaldevi&display=swap" rel="stylesheet">
<style>
.flex-container {
display: flex;
flex-direction: column;
background-color: aquamarine;
}

.flex-container > div {
background-color: aquamarine;
margin: 10px;
padding: 20px;
font-size: 20px;
font-family: 'yaldevi' sans-serif;
color: #1462DC ;
}
</style>
</head>

</section>

<body>

<body style="background-color:aquamarine;"></body>
<!-- YOUR CODE GOES HERE: -->
<h1>My solution</h1>
<div class="flex-container">
<div>
<p>SEO as defined by wikipedia: <strong>Search engine optimization</strong></p>
(SEO) is the process of improving the quality and quantity of website traffic
to a website or a web page from search engines.
</div>
<div>
SEO targets unpaid traffic (known as "natural" or "organic" results) rather than direct traffic or
paid traffic. Unpaid traffic may originate from different kinds of searches, including image search,
video search, academic search, news search, and industry-specific vertical search engines.
</div>
<div>
As an Internet marketing strategy, SEO considers how search engines work, the computer-programmed
algorithms that dictate search engine behaviour, what people search for, the actual search terms or keywords
typed into search engines, and which search engines are preferred by their targeted audience.
</div>
<div>
SEO is performed because a website will receive more visitors from a search engine when websites rank higher
on the search engine results page (SERP).
These visitors can then potentially be converted into customers.
</div>
<div>
<p>
Text from wikipedia: <a href="https://en.wikipedia.org/wiki/Search_engine_optimization"> visit wikipedia</a>
</p>
Useful resources:
<p><a href="https://www.youtube.com/watch?v=xsVTqzratPs"> visit ahref </a></p>
<p><a href="https://developers.google.com/search/blog"> visit Google Search Central Blog</a></p>
<p><a href="https://searchengineland.com/"> visit Search Enginge Land</a></p>
<img src="C:\Users\there\OneDrive\Privat\Technigo\application-remote-boot-camp-master\seo_pic.jpg" alt="SEO spelled with scrabble on wood background">
</div>
</div>


</body>

</html>
Binary file added seo_pic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* Example styling of a h1 element */
h1 {
color: #a200ff;
font-family: 'Yaldevi', sans-serif;
text-align: center;
background-color: aquamarine;
}