Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created March 23, 2021 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/36eba5ce412fd783ba00dfa4fb3fcd09 to your computer and use it in GitHub Desktop.
Save Alkimisti/36eba5ce412fd783ba00dfa4fb3fcd09 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>text-shadow</title>
<style>
h1 {
color: darkblue;
text-shadow: 2px 2px 5px gray;
}
</style>
</head>
<body>
<h1>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo quaerat quia quo reprehenderit repudiandae vel.</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment