I've been working with examples from MDN and an online course for a few days now. Suddenly, my HTML files are not loading correctly in any browser I try (Firefox, Chrome, IE, Edge). Most of the body content is missing.
This issue began last night. Any HTML files created prior to that work perfectly fine.
To troubleshoot, I tested my code on Codepen and it displayed perfectly there, adding to my confusion.
For editing, I use Sublime Text 2.
Any advice or suggestions would be greatly appreciated.
<!DOCTYPE html>
<html>
<head>
<title>Photo Blog</title>
<link rel="stylesheet" type="text/css" href="photos.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<p>Look at the Photos!</p>
<img src="http://c1.staticflickr.com/9/8450/8026519634_f33f3724ea_b.jpg">
<img src="http://c2.staticflickr.com/8/7218/7209301894_c99d3a33c2_h.jpg">
<img src="http://c2.staticflickr.com/8/7231/6947093326_df216540ff_b.jpg">
<img src="http://c1.staticflickr.com/9/8788/17367410309_78abb9e5b6_b.jpg">
<img src="http://c2.staticflickr.com/6/5814/20700286354_762c19bd3b_b.jpg">
<img src="http://c2.staticflickr.com/6/5647/21137202535_404bf25729_b.jpg">
<img src="http://c2.staticflickr.com/6/5588/14991687545_5c8e1a2e86_b.jpg">
<img src="http://c2.staticflickr.com/4/3888/14878097108_5997041006_b.jpg">
<img src="http://c2.staticflickr.com/8/7579/15482110477_0b0e9e5421_b.jpg">
</body>
</html>
CSS
img{
width: 30%;
float: left;
margin: 1.66%;
}
p{
font-family: Raleway;
margin-left: 1.66%
font-size: 23 px;
font-weight: 800;
text-transform: uppercase;
border-bottom: 2px solid #f1f1f1;
width: 30%;
padding-bottom: 20px;
}