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
Andreas Ragnar Hansen
1,871 PointsI cannot open my homepage in internet explorer
Hi
Why am I not able to open my homepage from an Internet Explorer? I am using two different computers with two different browsers installed (chrome and explorer) but for some reasons my hompage is only displayed properly in chrome.
6 Answers
Zoltán Holik
3,401 PointsSource code please, or the only answer without code is: Because it's wrong. :)
Andreas Ragnar Hansen
1,871 PointsHere it is..
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CAE community provide virtual product development | CAECampus</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Duru+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>CAECampus drives engineering innovation through great simulation</h1>
<h2>A modern engineering community for simulation modeling</h2>
</a>
<nav>
<ul>
<li><a href="index.html" class="selected">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul id="gallery">
<li>
<a href="img/Design1.jpg">
<img src="img/Design1.jpg" alt="">
<p>Experimentation with texture and color.</p>
</a>
</li>
<li>
<a href="img/Design2.jpg">
<img src="img/Design2.jpg" alt="">
<p>Playing with blending modes in Photoshop.</p>
</a>
</li>
<li>
<a href="img/Design4.jpg">
<img src="img/Design4.jpg" alt="">
<p>Dripes created using photoshop brushes.</p>
</a>
</li>
<li>
<a href="img/Design5.jpg">
<img src="img/Design5.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
<li>
<a href="img/Design6.jpg">
<img src="img/Design6.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
<li>
<a href="img/Design7.jpg">
<img src="img/Design7.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
<li>
<a href="img/Design8.jpg">
<img src="img/Design8.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
<li>
<a href="img/Design9.jpg">
<img src="img/Design9.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
<li>
<a href="img/Design11.jpg">
<img src="img/Design11.jpg" alt="">
<p>Creating shapes using repetition.</p>
</a>
</li>
</ul>
</section>
<footer>
<img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon">
<a href="http://facebook.com/andreas.hansen.359"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a>
<a href="https://www.linkedin.com/hp/?dnr=sbYIr51Kbp983YEmpb1yPKoBfp9PMoLgOFFU"><img src="img/linkedin_logo11.jpg" alt="Facebook Logo" class="social-icon"></a>
<p>© 2015 Andreas Hansen.</p>
</footer>
</div>
</body>
</html>
Zoltán Holik
3,401 PointsYour code is not a valid HTML5 code, because the html opening and closing tag is missing and the head tag too.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
Andreas Ragnar Hansen
1,871 PointsEverything should be there.. I don't know why it didn't copy it.
Andreas Ragnar Hansen
1,871 Pointsit is not pasting the <html> opening and </html> closing tags and the same with <head> </head>, but they are there in my document
Andreas Ragnar Hansen
1,871 PointsFor some reasons teamtreehouse won't let me write complete messages. words and codes are missing in my posts :-(
Chris Shaw
26,676 PointsHi Andreas,
When posting code you need to ensure you use Markdown otherwise it won't appear correctly, I have fixed this for you but as a guide please read Posting Code to the Forum.