Interactive Programming Forums
Login
Register
Home
Questions/Snippets/Exercises
Unanswered
Tags
Ask a Question
Post a Code Snippet
Post an Exercise
Welcome to Interactive Programming Forums, where you can ask questions, receive answers from other members of the community, post code snippets and post exercies.
All categories
Ruby
(3)
Python
(10)
PHP
(7)
Perl
(2)
SQL
(8)
Javascript
(6)
HTML
(20)
CSS
(4)
jQuery
(0)
XML
(3)
Code Snippets
(1)
Exercises
(4)
Other
(9)
I need some Help in here
+20
votes
order =Create a definition list that has 3 list items
my answer
<html>
<head>
<title></title>
</head>
<body>
<dl>
<dt>HE</dt>
<dd>* Hurricane Electric</dd>
</dl>
<ul>
<li>list 1</li>
<li>list 1</li>
<li>list 1</li>
</ul>
</body>
</html>
but it doesn't work i don't know why
posted
12 years
ago
in
HTML
by
Abdullah Muhamed
(
2,500
points)
3 Answers
0
votes
Hi,
Can you tell me what exercise name/number is?
answered
12 years
ago
by
codeadmin
(
113,880
points)
0
votes
You are supposed to a list of 3 <b>Definitions</b>.
Not a unordered list.
so remove unordered list block.
<ul>
<li>list 1</li>
<li>list 1</li>
<li>list 1</li>
</ul>
Add two more definitions to your definitions block. Keep HE definition.
<dt>A</dt>
<dd> Letter A </dd>
<dt>B</dt>
<dd>Letter B</dd>
answered
12 years
ago
by
Stefan Nelin
(
710
points)
0
votes
I think code look like
<html>
<head>
<title></title>
</head>
<body>
<dl>
<dt>HE</dt>
<dd>definition 1</dd>
<dd>definition 2</dd>
<dd>definition 3</dd>
</dl>
</body>
</html>
If you want i look like <ul> tag , I think you can use CSS
answered
12 years
ago
by
vqdat169
(
2,090
points)
Related questions
+4
votes
1
answer
in html on the second exercises im struggeling to create a 2 x 4 table can some one help
posted
12 years
ago
in
HTML
by
Matthew Tembo
(
6,610
points)
+7
votes
1
answer
need help in XML tutorial 1 ex .4
posted
12 years
ago
in
XML
by
Iku Hussain
(
980
points)
+9
votes
1
answer
I need to restart all the exercises of Tutorial III.
posted
12 years
ago
in
HTML
by
atimokoena
(
1,400
points)
programming
+28
votes
1
answer
i need to learn free programming. where do i start from
posted
13 years
ago
in
HTML
by
Jesse M Nzima
(
1,580
points)
+7
votes
1
answer
I cannot get Ques 7 in the JavaScript Function Tutorial to work? Help!
posted
12 years
ago
in
Javascript
by
Heidi Vincent
(
3,970
points)