开发者

How to share HTML/CSS across multiple web pages

开发者 https://www.devze.com 2023-01-18 22:36 出处:网络
I am new to programming, and have developed the main design features of my website and need to be able to share what I have done across multiple pages.It is mostly HTML and CSS code, with a little jav

I am new to programming, and have developed the main design features of my website and need to be able to share what I have done across multiple pages. It is mostly HTML and CSS code, with a little java. I plan on using PHP next with MySQL next. I have read about php开发者_开发知识库 include files, which seem pretty straight forward. My question is, are php include files the best way to go? Or will this cause problems down the road? What are common ways to work around this.

Thank you!


Yes you can use php include files. For the CSS, put it in a css folder, or any folder, then:

<link rel="stylesheet" type="text/css" href="path-to-css/style.css" />

0

精彩评论

暂无评论...
验证码 换一张
取 消