Edit HTML header
Let's edit the HTML header.
The HTML header is the part where the title, meta tag, CSS, JavaScript loading, etc. are written.
<head> <!-HTML header-></head>
It has a similar name to the header but is different.
The HTML header is written in the following file.
templates / common / meta.html
Let's open this file.
The HTML header of the website created by Giblog is as follows.
<!-Meta-><meta charset = "UTF-8"> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0, minimum-scale = 1.0"> <link rel = "stylesheet" type = "text / css" href = "/ css / common.css">
If you want to edit the HTML header, try changing this part.