Design code¸®½ºÆ®
-
-
Image tags
og:image tags
If
a tag can have multiple values, just put multiple versions of the same
tag on your page. The first tag (from top to bottom) is given preference
during conflicts.
Put
structured properties after you declare their root tag. Whenever
another root element is parsed, that structured property is considered
to be done and another one is started.
For example:
<meta property="og:image" content="http://example.com/rock.jpg" />
<meta property="og:image:height" content="300" />
<meta property="og:image:width" content="300" />
<meta property="og:image" content="http://example.com/rock2.jpg" />
<meta property="og:image" content="http://example.com/rock3.jpg" />
<meta property="og:image:height" content="1000" />
<meta property="og:image:secure_url" content="https://secure.example.com/ogp.jpg" />
Read more
|
-
-
How to create database...
How to create database...
mysql > > create database if not exists "DBname"; > grant usage on *.* to dbname@localhost identified by "pass"; >
grant select, insert, delete, create, update, alter, drop, index on
dbname.*
to
dbname@localhost;> flush privileges;
> exit
Àå¿¡ ÃʽÄÀÌ´Ù. µ¥ÀÌŸ º£À̽º »ý¼ºÀÇ ±âº» ¸í·É!
Read more
|