-
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.
- Loading branch information
1 parent
9bef6f6
commit 3cbf8ef
Showing
3 changed files
with
65 additions
and
15 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
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,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css" | ||
/> | ||
<title>Blank Page</title> | ||
</head> | ||
<body> | ||
<header> | ||
<!-- Header content --> | ||
</header> | ||
<main> | ||
<!-- Main content --> | ||
</main> | ||
<footer> | ||
<!-- Footer content --> | ||
</footer> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,25 +1,36 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css"> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css" | ||
/> | ||
<title>Hello, world!</title> | ||
</head> | ||
<body> | ||
<header> | ||
<!-- Header content --> | ||
<hgroup> | ||
<h1>Hello, world!</h1> | ||
<h2>This website uses <a href="https://picocss.com/examples/classless/" target="_blank">Pico.css classless</a>, a CSS framework that uses only HTML tags for styling.</h2> | ||
</hgroup> | ||
<a href="https://picocss.com/docs/" target="_blank"><button>Click here for more information about Pico.css</button></a> | ||
<!-- Header content --> | ||
<hgroup> | ||
<h1>Hello, world!</h1> | ||
<h2> | ||
This website uses | ||
<a href="https://picocss.com/examples/classless/" target="_blank"> | ||
Pico.css classless | ||
</a> | ||
, a CSS framework that uses only HTML tags for styling. | ||
</h2> | ||
</hgroup> | ||
<a href="https://picocss.com/docs/" target="_blank"> | ||
<button>Click here for more information about Pico.css</button> | ||
</a> | ||
</header> | ||
<main> | ||
<!-- Main content --> | ||
<!-- Main content --> | ||
</main> | ||
<footer> | ||
<!-- Footer content --> | ||
<!-- Footer content --> | ||
</footer> | ||
</body> | ||
</html> | ||
</html> |