- 4
Can some one help ne to make a program to have : tittle ,an background ,heading h1 on centre ,paraghraph 12px and a list 2links
help me guys a have an project like this
5 Réponses
+ 4
Um, seems like a web page instead of a program.
Instead of just ask for the code, I will recommend that you do the HTML and CSS course.
+ 2
If you looked at the html course here, you can easily figure it out...but I guess I can quickly help you out.
<!DOCTYPE html>
<html>
<head>
<title>Your Page Title</title>
</head>
<body>
<h1 style='text-align: center;'>A random header</h1>
<p style='font-size: 12px;'>A random paragraph</p>
<ul>
<li><a href='url'>Link1</a></li>
<li><a href='url'>Link2</a></li>
</ul>
</body>
</html>
If you ask another question that can literally be solved by spending 15 minutes in a single lesson, don't expect help from me. Not to be rude, but you should put some effort in before asking someone to lay out an entire web page for you.
0
if you are not clear on your question, noboby can give you a clear answer.....
0
I mean web page
0
can u write it ?