Tell us what’s happening:
Hi!
The instructions for the challenge step is:
The first one
should have a text of Send Card, a class of send-link and an href of #send.
The first one
should have a text of Share on Social Media, a class of share-link and an href of #share.
For the second anchor element instructions, the instructions have using the words first one
. It should be second one
.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting Card</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="card" id="greeting-card">
<h1>Happy Birthday!</h1>
<p class="message">
Wishing you all the happiness and joy on your special day!
</p>
<!-- User Editable Region -->
<div class="card-links"></div>
<!-- User Editable Region -->
</div>
</body>
</html>
/* file: styles.css */
body {
font-family: Arial, sans-serif;
padding: 40px;
text-align: center;
background-color: brown;
}
.card {
background-color: white;
max-width: 400px;
padding: 40px;
margin: 0 auto;
border-radius: 10px;
box-shadow: 0 4px 8px gray;
}
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 12; en; Infinix X6515 Build/SP1A.210812.016) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.129 HiBrowser/v2.23.1.4 UWS/ Mobile Safari/537.36
Challenge Information:
Design a Greeting Card - Step 8