Following a toturial: my code isn't displaying in my browser

It just appears as a white page.

Here is the code. I am using notepad++ and the file is called index.html. (That’s the file I’m clicking to open the web page) I just checked the code and there are no missing brackets or spelling errors.

Code:

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="htpps://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js integrity=" 
<link rel="stylesheet.css" type="text/css" src="style.css">
<title>
</title>
</head>
<body>
						<div class="jumbotron" style="margin-bottom": 0px;">
							<h1>Learn Web Development</h1>
							<p> asd asd asd asd asd asd </p>
						</div>

	

			<nav class="navbar navbar-expand-md navbar-light bg-dark">
					<span class="navbar-text">asd</span>
					<a class="navbar-brand"><img src="panda.jpeg"></a>
				<ul class="navbar-nav">
					<li><a href="#">HoME</a></li>
					<li><a href="#">HoME</a></li>
					<li><a href="#">HoME</a></li>
	
	
				</ul>
			</nav>
			<img src="clouds.jpeg" class="img-fluid"> 
		
	







</body>

</html>

CSS:

None

It looks like a complete nav bar and header on the toturial.

THis keeps happening.

Assuming that you actually have stylesheet.css and the image files and that they are in the correct locations, your problem is probably here:

<script src="htpps://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js integrity=" 

You have at least one typo and you didn’t finish the opening tag and you didn’t close the tag.

I fixed the typo(actually got the direct CDN from bootstrap’s website) and now it’s like this

Going to try to fix it. But there’s no typo errors so…

I have no idea how to fix this.

If your running the same code as above , then there are errors. As @ArielLeslie stated your bootstrap link is incomplete and missing the closing tag </script>. Simple mistake… could have happened when copy it over.