كود css ولا html
صحيح عندي عناصر ثانية تستعمل ال text align center
هذا كود ال html
<div class="content">
<h1>The Start</h1>
<p>
The Dark Future
</p>
<a href="https://www.youtube.com/">
Go To Youtube
</a>
</div>
و هذا كود ال css
h1{
color: purple;
text-decoration: underline;
text-align: center;
text-transform:uppercase ;
direction: ltr;
}
.content{
background-color: cyan;
height: 1330px;
width: 1330px;
}
p{
color: black;
text-align: center;
text-transform:uppercase ;
direction: ltr;
font-weight: bold;
}
a:link{
color: orangered;
text-decoration: underline;
text-align: center;
}
a:visited{
color: purple;
text-decoration: underline;
text-align: center;
}
a:hover{
color: palegoldenrod;
text-decoration: underline;
text-align: center;
}
a:active{
color: coral;
text-align: center;
}
كل شيء تمام لكن فقط ال link لا ياتي الى وسط الصفحة