Thursday, June 3, 2021

Fancy Blogger Template 2021 Free Download - Free Responsive Blogger Templates 2021

 Fancy Blogger Template is an exciting blogger theme with tons of unique and impressive features. This template contains a further space where you'll put advertisements. Another Excellent thing about this theme is its mobile-friendly nature. It works perfectly fine with nearly every screen size or ratio . Either you would like to make knowledgeable blog about people’s life, photography, fashion, nature, or learning this theme may be a good option for you to think about . the planning of the theme is extremely decent. you'll utilize this marvelous theme for a spread of purposes. you'll make use of its customization options so as to form your blog attractive. This theme contains google’s latest structure. it's a feature-enriched theme that's highly beneficial and useful to make blogs in such how that you simply can attract more readers towards it. Simple, Fast Loading, Responsive, Seo Ready, Adapted From WordPress, Ads Ready, Retina Ready, sink Menu, Social Bookmark Ready, Page Navigation Menu, Black, Post Thumbnails, Clean, Browser Compatibility, 2 Columns, Elegant, White, Stylish, WhatsApp Sharing, Free Premium, 1 Right Sidebar, Google, AMP, Mega Menu.



How to Install Blogger Template:

Tuesday, April 14, 2020

YouTube Aims To Compete With TikTok Competitor Via Youtube Shorts App |2020|


Youtube Vs Tiktok || Google Launch new App Youtube Shorts







YouTube reportedly plans to kick off a new service called "Shorts" in a bid to shore up its defenses against platforms such as TikTok. That's according to recent reports citing two sources said to be close to the matter. The platform, set to be built into YouTube, will reportedly feature short-form videos similar to TikTok. But it will also include a full battery of new creative tools to counter TikTok's core functionality.
The underlying goal for Shorts, sources claim, will be to take advantage of YouTube's massive userbase as a foundation for growth.
The Shorts would also, presumably, be separate from YouTube's Stories feature. It isn't immediately clear exactly how the tool would be different from Stories since that already focuses on short-form content. But Stories are limited in use to channels with more than a pre-determined number of subscribers. So it may be that Shorts are intended to offset those by providing a similar feature but without so many limitations.
Shorts looks like a YouTube response to a very real threat
Now, YouTube has plenty of reasons to be concerned about TikTok and at least one big reason in particular. Namely, that's Prosstudio in the US and other regions after it initially got its start in China.
The app launched back in 2016 and quickly rose to top social media charts in its home region. Then, in the first quarter of 2019, TikTok took the top spot in terms of overall downloads for the first quarter. It led overall as well as specifically in the Google Play Store, taking spot number two for iOS. As of that quarter last year, it was easily one of the leading short video platforms in both Asia and the US.
Where TikTok excels, despite its 'social media' branding, is in the ease it provides for sharing really short video clips. Those come complete with plenty of options for effects and backing-music too, giving it something of an edge over similar platforms. That also means, while it doesn't directly compete with YouTube, it is a source of competition in the short video viewing category. So it does steal away at least some traffic from that platform.
The addition of those types of features and others only serves to make TikTok an even more popular platform. That gives Google's media-focused sister company all the more reason to pursue new features of its own.

When will Shorts arrive?

There's no exact timetable for the launch of YouTube Shorts, as of this writing. But the media giant reportedly plans to launch the feature before the end of the year. If and when that does arrive, the insider sources indicate, it won't be a standalone app like competing apps though. Instead, users will see it appear as a new feature within the YouTube app itself.
That means that it will arrive as part of either a server-side or app store update.

How To Add or Remove contact form in blogger

In this article i will show you how you can ADD or REMOVE Contact form.

Adding Contact Form To A Page

Now, we will add the contact form to a static page of your Blogger blog. Navigate to your Dashboard > Posts, and click on New Page and select Blank Page.
Now, in your blank page, click on HTML option to switch to HTML editor mode. Add following code and publish your page:
<form name='contact-form'>
<p></p>
Name<br />
<input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' value='' type='text' />
<p></p>
Email
<span style='font-weight: bolder;'>*</span><br />
<input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' value='' type='text' />
<p></p>
Message<span style='font-weight: bolder;'>*</span><br />
<textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea>
<p></p>
<input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' value='Send' type='button' />
<p></p>
<div style='text-align: center; max-width: 222px; width: 100%'>
<p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p>
<p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p>
</div>
</form>
That’s it! You can also customize the contact form with custom CSS styling or jQuery.
it will show like this.
How To Add or Remove contact form in blogger

Hiding Contact Form From Your Sidebar

First, we need to hide the default contact form from your Blogger’s sidebar widget. Navigate to your Dashboard > Template > Edit HTML. Search and paste this code just above ]]></b:skin>:
#ContactForm1{
display: none !important;
}
Save your template.