תעזרו לי בבקשה לבנות אתר ממש בסיסי בשפת html (רק שיר+תמונת רקע) - תכנות - HWzone פורומים
עבור לתוכן
  • צור חשבון

תעזרו לי בבקשה לבנות אתר ממש בסיסי בשפת html (רק שיר+תמונת רקע)


malcolmx9

Recommended Posts

אני צריך לבנות אתר בשפת html, שיכלול כותרת+שיר מעל תמונת רקע.

הייתי כותב את האתר בעצמי, אבל אין לי מושג בשפת html, וכשניסיתי ללמוד את הבסיס לא הצלחתי לקלוט את השפה!

אז אם אתם מוכנים לבזבז כמה דקות מהזמן שלכם, בבקשה תעזרו לי לבנות את האתר :).

הנה קוד שמכיל את תמונת הרקע, באתר שבו אשמור את האתר שלי:

<img src=http://img287.imageshack.us/img287/3545/aimeadeath9oq.jpg>

אני משער שהטקסט והכותרת יבלטו טוב בצבע אדום, מודגש. הכותרת בגודל 22, והטקסט בגודל 16. אם אתם חושבים שצריכים לעשות שינויים

כדאי שייצא יותר יפה, אז תרגישו חופשי :).

הנה השיר שאני מעוניין לשים על גביי תמונת הרקע:

The Beginning Of The End

The beginning of the end,

the beginning of the end.

It's all a vicious circle,

'round an ever turning bend.

And you can't do this, because you can't do that

And you can't rise above it

Cause you can't get off your back.

And you want to pick wild berries,

or go romping in the snow,

But, it's all beyond your fingertips,

your stuck here, don't you know.

The beginning of the end,

the beginning of the end.

It's all a vicious circle round an ever twisting bend.

And you can't escape its fortress,

for the doors open and they close,

Just long enough to keep you running,

and why?

Heaven only knows!

The beginning, of the end,

the beginning of the end,

It's all a vicious circle and the race is run again.

האתר יעבוד טוב גם בפיירפוקס?

ממש תודה לכל מי שעוזר :)

קישור לתוכן
שתף באתרים אחרים

אוקיי, אני לא מומחה אבל מה שהצלחתי לעשות זה בערך זה -


<HTML>
<HEAD></HEAD>
<BODY BACKGROUND = "[url]http://img287.imageshack.us/img287/3545/aimeadeath9oq.jpg">[/url]
<FONT COLOR="red" SIZE=5>
The Beginning Of The End
</FONT><BR><BR>
<FONT COLOR="red" SIZE=3>
The beginning of the end,<BR>
the beginning of the end.<BR>
It's all a vicious circle,<BR>
'round an ever turning bend.<BR><BR>

And you can't do this, because you can't do that<BR>
And you can't rise above it<BR>
Cause you can't get off your back.<BR>
And you want to pick wild berries,<BR>
or go romping in the snow,<BR>
But, it's all beyond your fingertips,<BR>
your stuck here, don't you know.<BR><BR>

The beginning of the end,<BR>
the beginning of the end.<BR>
It's all a vicious circle round an ever twisting bend.<BR>
And you can't escape its fortress,<BR>
for the doors open and they close,<BR>
Just long enough to keep you running,<BR>
and why?<BR>
Heaven only knows!<BR>
The beginning, of the end,<BR>
the beginning of the end,<BR>
It's all a vicious circle and the race is run again.<BR>
</FONT>
</BODY>
</HTML>

קישור לתוכן
שתף באתרים אחרים

תודה על העזרה :), אבל תמונת הרקע לא יצאה באתר.

אתה יודע איך מסדרים?

אני צריך לקבל קוד לתמונת הרקע דרך האתר:

<img src=http://img515.imageshack.us/img515/2123/aimeadeath6dd.jpg>

אם אני לא משתמש בו, תמונת הרקע לא תצא. אולי זאת הבעיה? השתמשת בקוד הזה באתר שבנית?

[attachment deleted by admin]

קישור לתוכן
שתף באתרים אחרים

קבל קוד כשר למהדרין.

יש רק בעיה אחת.. תמונת הרקע שלך קטנה מידי ולכן היא משכפלת את עצמה מספר פעמים.

בנוסף היתי חייב להשתמש בצבע כחול לטקסט כי על רקע התמונה לא רואים את האדום בצורה ברורה.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[url]http://www.w3.org/TR/html4/loose.dtd">[/url]
<html>
<head>
<title>The Beginning Of The End</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style2 {
font-size: 16px;
color: #3399FF;
font-weight: bold;
}
body {
background-image: url([url]http://img287.imageshack.us/img287/3545/aimeadeath9oq.jpg[/url]);
}
.style3 {
color: #3399FF;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div align="center" class="style1">
<p class="style3">The Beginning Of The End</p>
<p class="style3"> </p>
<p class="style2"> <br>
The beginning of the end, <br>
the beginning of the end. <br>
It's all a vicious circle, <br>
'round an ever turning bend. <br>
<br>
And you can't do this, because you can't do that <br>
And you can't rise above it <br>
Cause you can't get off your back. <br>
And you want to pick wild berries, <br>
or go romping in the snow, <br>
But, it's all beyond your fingertips, <br>
your stuck here, don't you know. <br>
<br>
The beginning of the end, <br>
the beginning of the end. <br>
It's all a vicious circle round an ever twisting bend. <br>
And you can't escape its fortress, <br>
for the doors open and they close, <br>
Just long enough to keep you running, <br>
and why? <br>
Heaven only knows! <br>
The beginning, of the end, <br>
the beginning of the end, <br>
It's all a vicious circle and the race is run again. </p>
</div>
</body>
</html>

קישור לתוכן
שתף באתרים אחרים

ארכיון

דיון זה הועבר לארכיון ולא ניתן להוסיף בו תגובות חדשות.

×
  • צור חדש...