HTML - Useful HTML Markup

0 votes
186 views
added Jul 18, 2018 in HTML by LC Marshal Captain (25,790 points)
<!--CSS resources-->
<link rel="stylesheet" href="myclass.css">
 
<!--Add label on input-->
<input placeholder="Password" type="password" />
 
<!--Refresh document every 30 seconds-->
<meta http-equiv="refresh" content="30">
 
<!--character set-->
<meta charset="UTF-8">
 
<!--Add phone number as a link-->
<a href="tel:1300111200"><img src="path/example.jpg"/></a>
 
<!--Use search form with GET method, i.e action, name-->
<form id="search-404" action="/search-property" method="get">
 <div>
 <i class="search-icon-404 ion-icon ion-ios-search-strong"></i>
 <input type="text" placeholder="What are you looking for..." size="40" name="keyword">
 </div>
</form>

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...