jQuery Mobile Opensource

jQuery Mobile Opensource

Hi, I'm new to this and have been playing around with jQuery Mobile code. Very good. love it.

I've been doing a lot of reading about this, but can someone please confirm this.
1) Opensource
jQuery is an opensource platform where I can use it to create website no problem right? no copy right issue? do I need to display any link back to jQuery for this?

2) jQuery library source
I can freely download and use the script below for my website can't I? and build it from here.
Do I need to make any reference to jQuery for using the source?

<!DOCTYPE html>  <html> <head> <title>Page Title</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> </head> <body> ...content goes here... </body> </html>

Thanks.