Website title issue [duplicate] - html

This question already has answers here:
Google displaying website title differently in search results
(2 answers)
Closed 9 years ago.
I recently opened two websites, one is running on WordPress and one is a HTML website. On both of them I have the same issue.
I added the title like that:
<title>Main Keyword - Secondary Keyword - SiteName</title>
The title doesn't exceed 69 characters.
When I search for the website on Google, the title is displayed like that:
SiteName: Main Keyword - Secondary Keyword
The issue: "SiteName" is on the left followed by ":".
This can't be something from WordPress because as I told you I have the same issue on a pure HTML website. Any ideas, suggestions? I really appreciate any intervention.
Thanks in advance!

Have you tried this?
1) open your panel in
/wp-admin/options-general.php
Check my image (my painel is in portuguese) but you can see the input for title and description

Related

Is it possible to share a website without hosting it? [duplicate]

This question already has answers here:
Is there anyway to render a website and share it without hosting it?
(2 answers)
Closed 1 year ago.
So recently I started a project to expand my knowledge when it comes to HTML and CSS. I made a little website just for myself and I want to get some feedback from my friend.
I want him to be able to maybe click on a link and then get to my website (doesn't have to be a link). So I don't want to publish the website for anyone but for my friend or anyone that has that link or something like that.
I already heard about sharing files to someone on OneDrive and including all the code in it but my OneDrive is already out of storage so something different would be nice.
It is best to use pages.github.com check the page is a small post and video tutorial on how to use it, greetings bro!

ID # reference without index.html [duplicate]

This question already has answers here:
Reference: mod_rewrite, URL rewriting and "pretty links" explained
(5 answers)
Closed 5 years ago.
long time lurker first time signup and poster.
quiet simple really
how do i reference from the navigation page/index.html#id to just page#id
- so i dont want it to show index.html
ie.
ww.page1.com/pasture#clover
i am currently using the codes below, and dont mind if i need to put in some other code. the pages will be in .php later on but for now in html.
I am using the below codes
Clover
from the navigation on the first page/all pages
<h3 id="clover">Clover</h3>
and this on the target page
What you want: Anchors (or Bookmarks)
Look here: https://www.w3schools.com/html/html_links.asp
So: Use Clover
Also: If you call the site as www.abc.de/index.html#123, then it will stay as it is - and give you www.abc.de/index.html#clover.
If you call the site as www.abc.de/#123, then it will also stay as it is - and give you www.abc.de/#clover.
Edit: I misunderstood the OP. I may edit this post later. Sorry.

Removing a / from the address bar? [duplicate]

This question already has answers here:
Removing trailing slash from ALL URLs in site
(3 answers)
Closed 8 years ago.
I've always seen this on websites but I've never actually known how to do it. If the title is unclear then here is what I mean.
http://domain.com/directory/
I want to change that into:
http://domain.com/directory
I've seen other websites do it and I just wondered how I would go about doing that. Not even sure if this is the correct place to be posting this but I have no idea. If I am posting in the wrong place then please direct me to somewhere else. Thank you.
It is good for the SEO and it will set default to the root of your domain on the server where you have uploaded the web pages. It is something you don't need to worry about. It pretty much gets the search engines to look at all the files and not just the index.html file

My Html text distorted on web [duplicate]

This question already has answers here:
Why is this appearing in my c# strings: £
(4 answers)
Closed 8 years ago.
Hey guys I know it's bit weird situation, but if anybody face and resolved this problem before, would be able to help me. For example I have written <p>sydney's</p>in my html markup and It looks something like this on webpage - Sydney’s.
Platform I am using is Asp.net 2.0.
Thanks in advance.
It is because you have the wrong encoding format in your webpage (ISO-8859-1), you could change it or more simply, you could just use the HTML entity ' in place of the apostrophe. Therefore it would be <p>sydney's</p>.

Images in a mySQL database [duplicate]

This question already has answers here:
Storing Images in DB - Yea or Nay?
(56 answers)
Closed 8 years ago.
I'm making a website for my brother's webcomic, which was previously hosted on Tumblr. What is the most efficient/logical option for storing the pictures?
Downloading and putting the path in the Db
Storing them in the database, base64-encoded
linking directly to the pictures on Tumblr
wat do?
If the tumblr site is going to remain active I would lean towards using the Tumblr API to get at the photos. You could then just write some javascript/jquery functions to display the images however you want.
I've done something similar in the past with Google Picasa Albums and it worked out pretty well.
http://www.tumblr.com/docs/en/api/v2#photo-posts
Just a little additional info, in the past I've found using jquery plugins sometimes makes it a bit mor simple to get at the data I'm looking for.
Never used this one in particular but just a quick search and found this as an example of one that might be helpful.
https://github.com/Iaaan/jQuery-plugin-for-Tumblr-API