<?xml 
version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="https://www.socicon.teddypayet.com/spip.php?page=backend.xslt" ?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>

<channel xml:lang="en">
	<title>Socicon</title>
	<link>http://socicon.teddypayet.com/</link>
	<description></description>
	<language>en</language>
	<generator>SPIP - www.spip.net</generator>
	<atom:link href="https://www.socicon.teddypayet.com/spip.php?id_rubrique=5&amp;page=backend" rel="self" type="application/rss+xml" />

	<image>
		<title>Socicon</title>
		<url>https://www.socicon.teddypayet.com/local/cache-vignettes/L144xH30/logo_socicon-f5b35.svg?1772640610</url>
		<link>http://socicon.teddypayet.com/</link>
		<height>30</height>
		<width>144</width>
	</image>



<item xml:lang="en">
		<title>How to use</title>
		<link>https://www.socicon.teddypayet.com/how-to-use</link>
		<guid isPermaLink="true">https://www.socicon.teddypayet.com/how-to-use</guid>
		<dc:date>2024-03-11T12:39:57Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>en</dc:language>
		<dc:creator>Teddy Payet</dc:creator>



		<description>
&lt;p&gt;How to use Socicon on your desktop computer Download Socicon Desk Install socicon.ttf on your computer In your software (Illustrator, Photoshop...), copy &amp; paste socicon glyphsHow to use Socicon on your website Download the font and copy the unzipped folder in a directory of your website Add the tag &lt;link rel=&#034;stylesheet&#034; href=&#034;your/directory/to/socicon/style.css&#034; type=&#034;text/css&#034;&gt; to your &lt;head&gt;. Then, add the Socicon CSS class to any HTML tag + (&#8230;)&lt;/p&gt;


-
&lt;a href="https://www.socicon.teddypayet.com/usage" rel="directory"&gt;Usage&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;h2 class=&#034;spip&#034;&gt;How to use Socicon on your desktop computer&lt;/h2&gt;&lt;ol class=&#034;spip&#034; role=&#034;list&#034;&gt;&lt;li&gt; &lt;a href='https://www.socicon.teddypayet.com/download' class=&#034;spip_in&#034;&gt;Download Socicon Desk&lt;/a&gt;&lt;/li&gt;&lt;li&gt; Install socicon.ttf on your computer&lt;/li&gt;&lt;li&gt; In your software (Illustrator, Photoshop...), &lt;a href='https://www.socicon.teddypayet.com/icons' class=&#034;spip_in&#034;&gt;copy &amp; paste socicon glyphs&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h2 class=&#034;spip&#034;&gt;How to use Socicon on your website&lt;/h2&gt;&lt;ol class=&#034;spip&#034; role=&#034;list&#034;&gt;&lt;li&gt; &lt;a href='https://www.socicon.teddypayet.com/download' class=&#034;spip_in&#034;&gt;Download the font&lt;/a&gt; and copy the unzipped folder in a directory of your website&lt;/li&gt;&lt;li&gt; Add the tag &lt;code class='spip_code spip_code_inline' dir='ltr'&gt;&lt;link rel=&#034;stylesheet&#034; href=&#034;your/directory/to/socicon/style.css&#034; type=&#034;text/css&#034;&gt;&lt;/code&gt; to your &lt;code class='spip_code spip_code_inline' dir='ltr'&gt;&lt;head&gt;&lt;/code&gt;.&lt;/li&gt;&lt;li&gt; Then, add the Socicon CSS class to any HTML tag + your styles. For example : &lt;code class='spip_code spip_code_inline' dir='ltr'&gt;class=&#034;socicon-github&#034;&lt;/code&gt; for the icon:&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span class=&#034;display-4 socicon socicon-github bg-dark text-light p-1 ps-2 pe-2 rounded-2&#034;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h2 class=&#034;spip&#034;&gt;Use Socicon with @font-face, local font&lt;/h2&gt;
&lt;p&gt;After downloading the font, you can declare the font in your CSS stylesheet. Use your path to the font, the one here is for example purpose.&lt;/p&gt;
&lt;div class=&#034;precode&#034;&gt;&lt;pre class=&#034;langage-css spip_code spip_code_block&#034; dir=&#034;ltr&#034; style=&#034;text-align:left;&#034;&gt;&lt;code&gt;@font-face { font-family: 'Socicon'; src: url('fonts/Socicon.eot?pkydzl'); src: url('fonts/Socicon.eot?pkydzl#iefix') format('embedded-opentype'), url('fonts/Socicon.ttf?pkydzl') format('truetype'), url('fonts/Socicon.woff?pkydzl') format('woff'), url('fonts/Socicon.svg?pkydzl#Socicon') format('svg'); font-weight: normal; font-style: normal; font-display: block;
}&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Then, you have to create a new CSS class that uses Socicon icons font. Here, a small example:&lt;/p&gt;
&lt;div class=&#034;precode&#034;&gt;&lt;pre class=&#034;langage-css spip_code spip_code_block&#034; dir=&#034;ltr&#034; style=&#034;text-align:left;&#034;&gt;&lt;code&gt;[class^=&#034;socicon-&#034;], [class*=&#034; socicon-&#034;] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'Socicon' !important; speak: never; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>



</channel>

</rss>
