-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from cupofvilatte/homepage-1
structure for feedback page and css
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>© 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.