に動作しない明確にする:
<?php
echo "<p class='myTest' id='myTag'>This is some text within HTML-tags</p>";
// Notice the use of "" and '', you do not wanna close the echo adding a class or such
?>
や用としての
<link rel="stylesheet" type="text/css" href="myStyle.css">
とmyStyle.cに:CSSは、(<head>
タグで)あなたのHTMLファイル内のスタイルシートを含むことから始めますあなたがタグ固有であるためにあなたのスタイリングをご希望の場合は
p.myTest {
color: red;
/* All <p> tags content with the class myTest will be written in red */
}
:あなたのHTMLのスタイルを設定するには、SS、
ではなく、固有のIDに適用するためにあなたが好きな
p {
color: red;
/* All <p> tags content will be written in red */
}
または多分:
#myTag {
color: red;
/* The content of the tag with the id "myTag" will be colored red,
given that color is a valid property for that specific tag */
}
がありbasic stylingチュートリアルの荷重で、あなたがそのナビゲーションバーのスタイリングはじめ助けるためにそこに案内します。
[の内部にHTMLコードを書き込む方法](http://stackoverflow.com/questions/18140270/how-to-write-html-code-inside-php) –