-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e71adba
commit ac4dcf2
Showing
2 changed files
with
36 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,12 @@ | ||
body { | ||
background-color: ivory; | ||
font-family: "Work Sans", ui-sans-serif, sans-serif; | ||
} | ||
|
||
h1 { | ||
font-size: 1.2rem; | ||
color: navy; | ||
} | ||
p { | ||
color: darkslategray; | ||
} |
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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Test page</title> | ||
<link rel="stylesheet" href="test.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content="Test page for localStorage"> | ||
<meta name="author" content="Gwyneth Llewelyn"> | ||
<meta name="robots" content="noindex, nofollow"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<h1>This is my test page</h1> | ||
<p> | ||
Saves unsaved text to localStorage.</p> | ||
<form method="POST" action="#"> | ||
<textarea id="message"></textarea> | ||
<button type="submit">Submit!</button> | ||
</form> | ||
<script src="../gwynethllewelyn/postlocalstorage/styles/all/template/postlocalstorage_functions.js"></script> | ||
</body> | ||
</html> |