HTML 3

웹사이트제작 프로그래밍언어들의 역할

html 웹사이트의 구조를 만들어줌 css 웹사이트의 디자인을 만들어줌 js (java script) 웹사이트의 기능을 구현해줌. html에 css, js를 붙여서 사이트를 구현을 해야함. html에 link 태그를 달아서 css 파일을 붙히고, script 태그를 달아서 javascript파일을 붙힌다. ./폴더명/파일명 이런식으로 접근해서 src에 붙혀서 html 구조에 디자인과 기능을 연결을 해준다.

홈페이지제작 2023.12.14

서버 기초

golang언어로 웹서버를 만들어보았다. [Golang] package main import ( "net/http" ) func main(){ http.Handle("/",http.FileServer(http.Dir("Public"))) http.ListenAndServe(":8080",nil) } main pkg "net/http" 요놈을 import를 해야 웹서버를 구현할수가 있다. http.Handle("/",http.FileServer(http.Dir("Public"))) http.ListenAndServe(":8080",nil) http 라이브러리를 이용해서 고랭과 html 파일을 연동하고 포트는 :8080로 설정을했다. [html] DOCTYPE html> 고랭웹서버 입니다. 환영합니다. ht..

블록체인 2023.12.02