Html challenges | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

Html challenges

there are a couple of questions in html challenge that i dont understand. I would ask you if someone could explain(not only tell me the awnsers) the questions to me. You can find the questions down below, because i can only write 512 characters

29th Mar 2018, 7:21 AM
Roel
Roel - avatar
12 Answers
+ 11
Hi Roel Question 1 Answer: <a href="mailto:abc@def.com" style= "text-decoration :none">Send</a> I think whats confusing you is the in-line CSS syntax, hope this helps with the other questions ;-)
29th Mar 2018, 8:13 AM
Mike Choy
Mike Choy - avatar
+ 10
Here's answer 3: <img src="images/dolphin.jpg" alt="a smiling dolphin" height="12px" width="12px" /> src is the path of the file alt stands for alternate (to image) text height and width are obvious, I suppose I don't think that these questions are that hard of a challenge, that is if you take the HTML course properly.
11th Dec 2018, 12:09 PM
Kainatic [Mostly Inactive Now]
Kainatic [Mostly Inactive Now] - avatar
+ 5
question 2: Fill in the blanks to create a form wich gets user's name and age, restricting the latter to the interval 18 - 35 <form action="index.php" method="post"> Name: <input type="text" name="name"><br> Age: <input type=" " name="age" min=" " max=" "><br> <input type="submit"v alue="submit"> </form>
29th Mar 2018, 7:27 AM
Roel
Roel - avatar
+ 4
question 1: Fill in the blanks to create a valid email link, displayed without an underline. <a href=" : abc@def.com" = "text-decoration:none"> Send</a>
29th Mar 2018, 7:22 AM
Roel
Roel - avatar
+ 4
question 4: Fill in the blanks to animate a rectangle in HTML5. <svg width="1000" height="250"> < width="150" height="50"> < attributeName="x" ="0" to="300" ="3s" fill="freeze" repeatCount="1"/> </rect> </ >
29th Mar 2018, 7:36 AM
Roel
Roel - avatar
+ 4
for question 4 its form="0" to="300" dur="3s" </svg> i am also confused with question 2 and 3....i wish someone would provide the answers
11th Apr 2018, 7:23 AM
UNITED NATIONS EMPOWERMENT
UNITED NATIONS EMPOWERMENT - avatar
+ 3
question 3: You need to display a square image with its side equal to 12px. If the image is not accessible, dispay the text "a smiling dolphin". The image is in a folder named "images". <img src=" /dolphin.jpg" ="a smiling dolphin" height=" px" ="12px" />
29th Mar 2018, 7:31 AM
Roel
Roel - avatar
+ 2
Thank you, I was indeed confused with the inline CSS syntax, but now I understand how it works
29th Mar 2018, 8:21 AM
Roel
Roel - avatar
+ 2
can someone give answers Q2 ???
20th Oct 2018, 12:11 PM
Aman Tiwari
Aman Tiwari - avatar
+ 2
ans-2 <input type="number" name="age" min="18" max="35">
22nd Nov 2018, 2:52 PM
Aman Tiwari
Aman Tiwari - avatar
+ 2
a href="mailto: style=text...............
22nd Nov 2018, 2:53 PM
Aman Tiwari
Aman Tiwari - avatar
+ 1
Thanks everyone, for helping me out back then, I now know the answers and it helped me a lot.
11th Dec 2018, 2:30 PM
Roel
Roel - avatar