Last active
May 3, 2023 19:54
-
-
Save maheshwaghmare/340e9af4fa0de6ef4a84749812879a41 to your computer and use it in GitHub Desktop.
The page generated with Auto-GPT-0.2.2. Read how to install, and use the AutoGPT in article https://maheshwaghmare.com/ai/autogpt/
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello World</title> | |
<style> | |
.card { | |
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); | |
transition: 0.3s; | |
width: 50%; | |
margin: auto; | |
} | |
.card:hover { | |
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); | |
} | |
.container { | |
padding: 2px 16px; | |
} | |
</style> | |
</head> | |
<body> | |
<h2>Hello World</h2> | |
<div class="card"> | |
<div class="container"> | |
<h4><b>Card Heading</b></h4> | |
<p>Card Sub-heading</p> | |
<button>Button</button> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment