The location at which my site ACTUALLY works: https://username.github.io/html/
The location at which I want my site to ACTUALLY work: http://username.github.io
Initially, I had my index.html directly in my repository, but then I moved it into an html folder with all my other html files for organization. How do I make it so it works in the following manner:
<head>
<title> NAME </title>
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" type="image/ico" href="/favicon.ico">
<link rel="stylesheet" href="../css/index.css">
</head>
<section id="Site">
<h3>
<a href="../html/">FIRST LAST </a>
</h3>
</section>
The location at which I want my site to ACTUALLY work: http://username.github.io
Thanks