내용관리 페이지 css 적용하는 방법
본문
테마내 페이지 폴더에 company2.php 파일 만들어 업로드
테마내 페이지 폴더에 css폴더 생성
페이지내 css폴더안 적용 할 company2.css 파일 업로드
현재 company2.php 파일내 코드는 아래와 같습니다.
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Company2 Info</title>
<link rel="stylesheet" href="">
</head>
적용 할 css를 불러오는 방법이 무엇인지 질문드립니다.
답변 1
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Company2 Info</title>
<link rel="stylesheet" href="css/company2.css">
</head>
답변을 작성하시기 전에 로그인 해주세요.