Edit your blog posts for more options.
the blogger have so much options but it not have scroll bar, sing in, log in, log out and more types of buttons
you want to add that buttons in your post use html codes.
html in blog post.
step 1 : go to your blog.
step 2 : click new post.
step 3: see the left side of the window compose and html potion will show. chose the html option.
1.Add Scroll Bar.
Example:
code is copy from w3schools website.
Run »
<!DOCTYPE html>
<html>
<body>
<p>An iframe where scrollbars are always shown:</p>
<iframe src="/default.asp" width="200" height="200" scrolling="yes">
<p>Your browser does not support iframes.</p>
</iframe>
<p>An iframe where scrollbars are never shown:</p>
<iframe src="/default.asp" width="200" height="200" scrolling="no">
<p>Your browser does not support iframes.</p>
</iframe>
<p>The scrolling attribute is not supported in HTML5. Use CSS instead.</p>
</body>
apply this codes to your blogger post and edit your self what you want in scrolling bar option.
2.Add name Button.
example:
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php" method="get">
Choose your favorite subject:
<button name="subject" type="submit" value="HTML">HTML</button>
<button name="subject" type="submit" value="CSS">CSS</button>
</form>
</body>
</html>
apply this codes to your blogger post for buttons.2.Add name Button.
example:
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php" method="get">
Choose your favorite subject:
<button name="subject" type="submit" value="HTML">HTML</button>
<button name="subject" type="submit" value="CSS">CSS</button>
</form>
</body>
</html>
edit the name of a button what you want.
out put:
![]() |
img from w3 website. |
change buttons name what
you
want.
3.Add search bar.
example:
<html>
<form>
name:<input type="name" name="name">
password<input type="password" name="password>
</form>
</html>apply this code for create your search bar option in your blog.
all of these coding's are basic coding's you want more coding in html the w3 website is the best.
link for w3 website.
link :https://www.w3schools.com/html/
Comments
Post a Comment