Reputation:
Is there any Option to create a cross christian symbol USING HTML
and CSS
?
Upvotes: 4
Views: 5540
Reputation: 22711
You can get cross using,
Entity Name † †
Decimal Number † †
HexNumber † †
Upvotes: 1
Reputation: 58521
http://jsfiddle.net/billymoon/tRG72/
HTML
<div id="horizontal"></div>
<div id="vertical"></div>
CSS
#horizontal{
width: 100px;
height: 10px;
background-color: goldenrod;
top: 60px;
left: 10px;
position: absolute;
}
#vertical{
width: 10px;
height: 180px;
background-color: goldenrod;
top: 10px;
left: 55px;
position: absolute;
}
Upvotes: 0
Reputation: 69
Here is HTML special character link. http://ikreator.com/special-characters/#crosses
Upvotes: 0
Reputation: 7438
Following is the list of various Cross Symbols and their HTML code
☦ Eastern Christian Cross ☦
☧ Chi Rho Cross ☧
☨ Patriarchal Cross ☨
☩ Greek Cross ☩
✚ Greek Cross heavy ✚
✙ Greek Cross outline ✙
☓ Saltire, St.Andrew’s Cross ☓
✝ Latin Roman Cross ✝
✞ Latin Cross 3D shadow ✞
✟ Latin Cross outline ✟
You can use them in HTML or CSS.
see the following link for more details http://www.sabinanore.com/design/web-design/html-special-symbols/
Upvotes: 6
Reputation: 1792
I think you may find many symbols from here http://en.wikipedia.org/wiki/Cultural,_political,_and_religious_symbols_in_Unicode
Upvotes: 0
Reputation: 15992
I think this:
✝ -> ✝
and
✞ -> ✞
For more HTML codes for symbols: http://www.danshort.com/HTMLentities/?w=dingb
Upvotes: 0