Add icon on landing page

This commit is contained in:
Jake R 2024-05-19 00:17:57 -07:00
parent 38ae31b48e
commit f2f154bc3e
2 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,10 @@
<body>
<header>
<div class="container">
<div class="logo">PWS</div>
<div class="logo">
<img src="static/favicon.ico" alt="Logo">
PWS
</div>
<nav>
<a href="about.html" class="nav-button">About</a>
<a href="services.html" class="nav-button">Services</a>

View File

@ -34,6 +34,8 @@ header .logo {
font-family: 'Montserrat', sans-serif;
font-size: 1.5em;
font-weight: 600;
display: flex;
align-items: center;
}
header nav ul {