Last active
March 15, 2022 07:40
-
-
Save denielchiang/46b1aa182b3a7e692274039ca7fd4559 to your computer and use it in GitHub Desktop.
Gist demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div> | |
<h2>前端技術</h2> | |
<h2>Vue</h2> | |
<h3>React</h3> | |
<h3>Angular</h3> | |
</div> | |
<div> | |
<h2>後端技術</h2> | |
<h3>Laravel</h3> | |
<h3>nodeJS</h3> | |
<h3>Ruby on rails</h3> | |
</div> | |
<div> | |
<h2>雲端服務</h2> | |
<h3>AWS</h3> | |
<h3>Azure</h3> | |
<h3>GCP</h3> | |
</div> | |
</body> |
加上屬性的意思指的是說每個標籤都有他自己的屬性
body有body的屬性
div有div的屬性
h有h的屬性
依照你的作業題目來看
他是希望你在「前端技術」與「後端技術」h2裡面加屬性
屬性名稱是class
class="前端技術"
Vue
React
Angular
class="後端技術"
Laravel
nodeJS
Ruby on rails
雲端服務
AWS
Azure
GCP
<body>
<div>
<h2 class="">前端技術</h2>
<h2>Vue</h2>
<h3>React</h3>
<h3>Angular</h3>
</div>
<div>
<h2 class="">後端技術</h2>
<h3>Laravel</h3>
<h3>nodeJS</h3>
<h3>Ruby on rails</h3>
</div>
<div>
<h2>雲端服務</h2>
<h3>AWS</h3>
<h3>Azure</h3>
<h3>GCP</h3>
</div>
</body>
前端技術
Vue
React
Angular
後端技術
Laravel
nodeJS
Ruby on rails
雲端服務
AWS
Azure
GCP
前端技術
Vue
React
Angular
後端技術
Laravel
nodeJS
Ruby on rails
雲端服務
AWS
Azure
GCP
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
前端技術
Vue
React
Angular
後端技術
Laravel
nodeJS
Ruby on rails
雲端服務
AWS
Azure
GCP