Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Bootstrap Basics Getting to Know Bootstrap Creating a Simple Page

Siddharth Pande
Siddharth Pande
9,046 Points

From where do we get the 'meta' and 'link' to link the bootstrap on our website or page?

From where do we get the 'meta' and 'link' to link the bootstrap on our website or page?

1 Answer

Gabriel Plackey
Gabriel Plackey
11,064 Points

https://getbootstrap.com/docs/4.3/getting-started/introduction/ you should find this website very helpful. It has the meta tag, script tags, and link tags you need to get started using bootstrap on your own website.

Siddharth Pande
Siddharth Pande
9,046 Points

could you please also explain what does a meta tag do? And what is !DOCTYPE?

Gabriel Plackey
Gabriel Plackey
11,064 Points

The meta tag holds metadata about the HTML document. It's displayable on the page in any way, but it can be used to specify page description, keywords, author of the document, last modified, and other data. The metadata can also be used by browsers (how to display content or reload page), search engines (keywords), or other web services.

The doctype basically tells the Web browsers which version of HTML you have used so that they know how to render your pages.