Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rendered favicon and images properly #73

Merged
merged 2 commits into from
Oct 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body {

.nav > img {
margin: 30px 0 0 0;
border: 1px solid red;
border: none;
height: 190px;
width: 190px;
}
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<title>ChaosWeb - The Disorderly UI Experiment</title>
<link rel="stylesheet" href="css/style.css">

<link rel="shortcut icon" href="../assets/logo/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="./assets/logo/favicon.ico" type="image/x-icon">

</head>
<body>
<!--ALL SVGs taken from https://undraw.co/-->
<nav class="nav">
<img src="../assets/logo/ChaosWeb.svg" alt="ChaosWeb Logo" id="chaos-logo">
<img src="./assets/logo/ChaosWeb.svg" alt="ChaosWeb-Logo" id="chaos-logo">
<h1 id="chaos-header">ChaosWeb - The Disorderly UI Experiment</h1>
</nav>
<div class="navbar">
Expand Down
Loading