Skip to content

Instantly share code, notes, and snippets.

@nakimera
Last active March 16, 2019 13:12
Show Gist options
  • Save nakimera/9e955e99842a7b8b8dbb88e50e6d7779 to your computer and use it in GitHub Desktop.
Save nakimera/9e955e99842a7b8b8dbb88e50e6d7779 to your computer and use it in GitHub Desktop.
This gist contains the index.html content for my medium blog post about Introduction to CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="card">
<img src="eiffel-tower-.jpg" alt="eiffle-tower" class="card-image">
<input type="text" placeholder="email" class="card-input">
<input type="password" placeholder="password" class="card-input">
<button class="card-button">LOGIN</button>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment