+ 3
Making the buttons 3d
Hello sololearners, How can I make tge buttons 3d?(f.e.:the buttons "Geographical"or "Cyrus the great ") https://code.sololearn.com/W7v7llaGg97k/?ref=app
10 Answers
+ 5
Use css property to change text color.
- you can use HTML style attribute to add styles to an element to color
- For example:
<h1 style="color:red;">This is text</h1>
<p style="color:yello;">paragraph.</p>
Or
-By using internal/external CSS :
selector {
color: value;
}
i.e
p {
color: blue;
}
+ 3
Refer this, it may help you.
https://www.joshwcomeau.com/animation/3d-button/
+ 1
*PJ* thank you
+ 1
Yes the b tags should actually be ps
I wanted them to be bold cause I thought it gives them heavier fonts as you said
And thanks for another great recommendation
0
Why u are laughing. I suggested anything wrong?
0
Wrong chat,sorry brother
0
I am outside rn so I couldn't concentrate
0
Ok. No problem.
Happy Learning.
0
Ty bro!
0
Faraz Haghbayan
The only button in your page is the submit button at the bottom of the page.
Also, I think you're misusing the <b> tag. There's a lot of them. maybe those should be <p> tags?
You can set the font-weight for p tags in your css if you want heavier fonts. <b> tags are used to emphasize words, not as text-containers.