-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
2 changed files
with
41 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
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,38 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>App Display</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
padding-top: 50px; | ||
} | ||
h1 { | ||
color: blue; | ||
font-size: 36px; | ||
} | ||
.email, .homepage, .details { | ||
color: darkblue; | ||
/* text-decoration: none; */ | ||
display: block; | ||
margin: 15px 0; | ||
font-size: 24px; | ||
} | ||
.details { | ||
color: darkblue; | ||
font-size: 24px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>This app displays apps created by conversing with ChatGPT 4</h1> | ||
<p class="email"> Ken Kahn <<a href="mailto:[email protected]">[email protected]</a>> | ||
<a href="https://www.google.com/url?q=https://docs.google.com/document/d/1r7oaUOGs1TGjtKYo1CCmfqTifH5cqpPny5ALx5EIT_8/edit?usp%3Dsharing&sa=D&source=editors&ust=1702954163558132&usg=AOvVaw0plP6jmUK3buZLt2yvpS6h" class="homepage">Ken's Home Page</a> | ||
<p class="details">Here are <a href='https://docs.google.com/document/d/19KWL8t3G1igp7t-QE9GYPGRsmg080Z_uoBF-WC_eSxo/edit?usp=sharing' target='_blank'> | ||
more details about the process of creating these apps</a>.</p> | ||
</body> | ||
</html> |