+ 1
How change location html url on the page, pls help
I write a page, and I need to change location url on the page, but the url location is left, I would like to url on the center NOW: https://google.com I NEED THERE
5 Antworten
0
<p id = "google_link">
<a href='https://google.com'>This is Google link!</a>
</p>
in css file write this
p {
text-align: center;
}
or
#google_link {
text-align: center;
}
0
I did not get this
0
Can you explain deeply
0
See, like this test page
https://code.sololearn.com/WOVyZf1UqGXM/?ref=ap
0
<div align=center>
<p id="google_link">
<a href='https://google.com'>This is Google link!</a>
</p>
</div>
#google_link {
text-align: center;
}