22 lines
627 B
HTML
22 lines
627 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Portfolio</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="layer-2"></div>
|
|
<div class="layer-1">
|
|
<div class="card">
|
|
<h4>Title</h4>
|
|
<p>Content of the card.</p>
|
|
<div class="btn" type="button" >Click</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="script.js"></script>
|
|
</html> |