라벨이 Professional Developer History인 게시물 표시

[Designer Tips] How to use Font Awesome

이미지
  welcome!  It's RC Town!  🤗   Today, as announced in the previous post, 'Recommended free icon sites', I would like to introduce how to use web icon fonts and the font awesome site!   Gather all those who want to use icon fonts!   1 Reasons to use web icon fonts   There are many other ways to insert icons, so why use a web icon font!   1. Icon font is a font property Because icon fonts are applied as fonts, not images. Design freedom is higher than the method of inserting an image. There are many elements that can be changed with only css!   2. Takes up less space than image files The smaller the capacity, the faster the processing speed.   3. Available in vector form Unlike images, web icon fonts do not break no matter how much you increase their size.   4. Compatibility is good Because it is not implemented using JavaScript. It is exposed to the webpage in the same form in various browsers!   5. Diverse Of course, the degre...

7 rules for REST API URIs

이미지
  Before delving into the conventions of REST API URIs, let's briefly review the terminology.        URI   REST APIs use URLs.  In today's web, URI design ranges from masterpieces that clearly communicate an API's resource model to those that are difficult for people to understand.   Tim Berners Lee  made a note about the opacity of URIs in his list of "Principles of Web Architecture". "The only thing you can use an identifier for is referencing an object. When not dereferencing, see the contents of the URI string for other information."   Clients must follow the linking paradigm of the web and treat URIs as incomplete identifiers.   REST API designers must create URIs that convey the REST AP's resource model to potential client developers. In this post,   I would like to introduce  some design rules for REST API URIs .   Before looking at conventions, the conventions presented in this section pertain to the word...