Skip to content

Commit

Permalink
Merge pull request #16 from cupofvilatte/homepage-1
Browse files Browse the repository at this point in the history
structure for feedback page and css
  • Loading branch information
cupofvilatte authored Oct 19, 2024
2 parents c8e5408 + c5df032 commit 5d29052
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions feedback.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>scotti Home Page</title>

<link rel="icon" href="./images/scotti-logo.png" type="image/x-icon">

<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/feedback.css">

<script src="./scripts/teammembers.js" defer></script>
</head>
<body>
<header>
<div class="logo-title">
<img src="./images/scotti-logo.png" alt="scotti logo image">
<h1>scotti</h1>
</div>
<div class="navigation-tab">
<nav>
<a href="./index.html">Home</a>
<a href="./summarizer.html">Summarizer</a>
<a href="./support.html">Support</a>
</nav>
</div>
</header>
<main>

</main>
<footer>
<div>
<p>&copy scotti corporations - 2024</p>
</div>
<div class="socials">
<a href="#"><img src="./images/instagramlogo.png" alt="instagram link image"></a>
<a href="#"><img src="./images/twitterSlashXlogo.avif" alt="x link image"></a>
<a href="#"><img src="./images/facebookicon.png" alt="facebook link image"></a>
</div>
</footer>
</body>
</html>
Empty file added styles/feedback.css
Empty file.

0 comments on commit 5d29052

Please sign in to comment.