소프트웨어/HTML

    txt파일 include하고 line break 나타내기

    include txt file on html As MrN00b noted, I am assuming you have left out the inclusion of the jQuery js file itself? Please include it, if you have not already, as it is not implicitly part of a web page.As your code precedes the item in the document it references (id="text"), you need to wait for the document to complete loading:Use one of these so that your jQuery will wait for the DOM to fin..

    content, content에서 개행(enter, <br>)입력하기

    attr([id])와 html의 content property를 사용하면,html의 property를 css에서 사용할 수 있다. 자세한건 w3school을 참조하자. http://www.w3schools.com/cssref/tryit.asp?filename=trycss_gen_content 매우 유용한건 확실하다! +new line을 추가하는 방법 figcaption:before { content: 'Figure \a' attr(title); white-space: pre; } http://stackoverflow.com/questions/9062988/newline-character-sequence-in-css-content-property

    web font, 웹 폰트에 대해서

    사이트에 폰트를 적용하는 방법은 2가지이다. 1. 파일을 가져다 적용시키는 방법이 방법으로 할 경우 font type에 따라서 각각 파일들이 존재하며 그에 맞게 명시를 해줘야지 브라우져들이 모두 적용이 된다. 2. 웹폰트를 사용할 경우경우만 맞다면 모빌리스 웹폰트를 사용하면 되지만영리를 추구한다면 구글의 웹폰트르를 사용하면 된다. 웹폰트를 사용하는 이점은 브라우저별로 알아서 적용을 해준다. 실제로 어떻게 하는지는 구글링을 해보는걸 추천한다. 내가 한 방법은 하나이다.css파일을 별도로 관리할때, @import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);body { font-family:'Nanum Gothic';... }