HTMLのフッタータグ

王林
リリース: 2024-09-04 16:23:31
オリジナル
1186 人が閲覧しました

フッターは、作成者に関連するデータ、著作権情報を含むデータ、またはそのデータに関連するリンクを表します。 内にこの著者情報が入ります。要素。このタイプのタグは

として知られています。 HTMLのタグ。 HTMLのフッタータグは
タグ内で定義されます。

フッター要素は、

、、

の構文タグ:

<footer>
<p>Some text</p>
</footer>
ログイン後にコピー
  • タグは内で表現できます。
    で囲まれたタグタグ内にテキストが含まれており、フッター セクション内に表示されます。
  • は、HTML5 Web ページ内または別の HTML ドキュメント内で最も便利な要素の 1 つです。これは個々のブロックの一部とみなされます。
  • HTML 特別な種類の属性リストはありませんが、accesskey、data、class、contenteditable、dir、draggable、hidden、id、lang、dropzone、spellcheck、style、title、translate などのすべてのグローバル属性もサポートしています。 onafterprint、onbeforeprint、onbeforeunload、onerror、onload、onhashchange、onmessage、onoffline、onpopstate、onstorage、onresize などのイベント属性として。

HTML のフッター タグの例

HTML ドキュメントにフッターを含める方法は複数あります。いくつかを 1 つずつ見てみましょう:

例 #1

を含めるだけです。

のような Web ドキュメントの本文内のタグ

HTML コード:

<h2> Footer Example </h2>
<footer>
<p>Published by EDUCBA</p>
<p>Contact us: <a href="%E2%80%9Dmailto:%5Bemail%C2%A0protected%5D%E2%80%9D"> <u> HTMLのフッタータグ US </u> </a>
</p></footer>
ログイン後にコピー

出力:

HTMLのフッタータグ

例 #2

フッター オブジェクトは、最も修復的な HTML 要素、つまり

を表すために使用されます。要素。 getElementById(); を通じてアクセスできます。この例では、オブジェクトを通じてフッターにアクセスする方法と、フッター データにアクセスするための新しいオブジェクトを作成する方法を示します。

HTML コード:

<h3>Footer Object Example </h3>
<footer id="footerDemo">
<p>all rights reserved @ EDUCBA </p>
</footer>
<p>Press button to check footer section.</p>
<button onclick=" footerFunction()">Click Me</button>
<p id="footerobject"></p>
<script>
function footerFunction() {
var f = document.getElementById("footerDemo").innerHTML;
document.getElementById(" footerobject ").innerHTML = f;
}
</script>
ログイン後にコピー

出力:

HTMLのフッタータグ

例 #3

以下は著作権情報が含まれるデータの例です。

HTML コード:


<style type="text/css">
#shareicons img {
width: 50px;
padding: 10px;
display: inline;
}
</style>


<h1>Uday Wire Industries</h1>
<h4> <u> About US </u> </h4>
<p>We provide all types of HB wires in different size 5.5 mm , 6.5 mm , 7 mm , 8 mm , 12mm.All those wires drawn from the machines which works on new latest technology for producing best quality of HB wires. Those are kinds of raw material which is going to be useful for various wire industries , Cement pipe making industries ,for nails manufacturing industries and many other industries in the market. Nails also in various sizes 1/10' , 1.5/10' , 2/10' , 2.5/10' , 3/10' 4/10 etc. We are dealing with wire rods and cut rods also. Binding wires also with various different types.</p> <h4>Our Specialty</h4>
ログイン後にコピー
  • Good quality
  • Smooth Wire rods
  • perfect coil bundle
  •   No cut rods in coil
  • coils in small size packaging bundle

Please send us Your requirements to us .So we can give best to You!
Thank You !

Share on



Uday wire Industries
Shed No. 5 , 6, 7 ,8
Industrial  Area, MIDC Sector
Pune.



All rights reserved @Uday wire Industries

出力:

HTMLのフッタータグ

例 #4

以下は固定フッターの例です。

HTML コード:



<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.footerdemo {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color:blanchedalmond;
color: black;
text-align: left;
}
</style>


<img  src="img.jpg"   style="max-width:90%" alt="HTMLのフッタータグ" >
<div class="footerdemo">
<h4>About US</h4>
<ul>
<li> <a href="#"> Home </a> </li>
<li> <a href="#"> About </a> </li>
<li> <a href="#"> Career </a> </li>
<li> <a href="#"> Contact US </a> </li>
<li> <a href="#"> Visit Here </a> </li>
</ul>
</div>

ログイン後にコピー

出力:

HTMLのフッタータグ

例 #5

以下の例では、フッターは著作権に関する事項を表示するために使用されています。

HTML コード:

<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
.header {
background-color:aliceblue;
padding: 10px;
text-align: center;
}
.part {
float: left;
width: 25%;
padding: 10px;
}
.footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color:darkgoldenrod;
}
</style>


<div class="header">
<h1>Latest Technology trends in market </h1>
</div>
<div class="row">
<div class="part">
<h2>Robotic Process Automation</h2>
<p>RPA is latest trending technology which is automating jobs. It deals with the software to automate business methodologies like processingtransactions, replying to the emails, iterpreting with data etc.</p>
</div>
<div class="part">
<h2>Machine Learing</h2>
<p>Machine learing is the process considered as subset of Artificial Intelligence.Its based on neural networks, deep learing and natural language processing (NLP)</p>
</div>
<div class="part">
<h2>Artificial Intelligence</h2>
<p>One of the fastest growing technology is AI, which is based on system which built  human intelligence to perform tasks. It helps to complete tasks more perfectly and in short time than humans.  </p>
</div>
<div class="part">
<h2>BlockChain</h2>
<p>blockchain is trendy technology in upcoming days for maintaining transactions with encrypted and decentralized nature. Here you are going to make chain of data, so there is no need to trust on third party.</p>
</div>
</div> <br>
<div class="footer">
<h4>All rights reserved @Techpanda 2019</h4>
</div>
ログイン後にコピー

出力:

HTMLのフッタータグ

結論

つまり、フッターが作成者の情報、著作権、重要なもの、その他のデータを表示するために使用されるという問題を克服できます。常に body セクション内に置く必要があります。ドキュメント内で複数のフッターを使用できます。

以上がHTMLのフッタータグの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!