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

HTML How to Make a Website Adding Pages to a Website Add a New Page

Sandeep Singh
Sandeep Singh
3,582 Points

Hi., How to use these all HTML and css file together in android to open in browser ??

I want to check this design in my android but how to use it . What i have done .. I created one main folder in phone memory and put these all file in and than one more folder for css and img files. Now, HTML working correctly but other css files or fonts are not working even not images .

Abraham Juliot
Abraham Juliot
47,353 Points

can post a screen shot or link?

Sandeep Singh
Sandeep Singh
3,582 Points

<head> <meta charset="utf-8"> <title>Web/Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href="https://fonts.googleapis.com/css?family=Cinzel|Maven+Pro|Play" rel="stylesheet"> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> </head>

AND

<section> <ul id="gallery"> <li><a href="..........."><img src="img/second2.jpg" alt=""> <P>Learn about HTML5 and CSS</P> </a></li> <li><a href="--------"><img src="img/third3.jpg" alt=""> <P>Learn how to preparing for a web Design</P> </a></li> <li><a href="----------"><img src="img/first1.jpg" alt=""><P>How to create a Web step by step</P></a></li> <li><a href="img/Web5.jpg"><img src="img/Web5.jpg" alt=""><P>Get in Coding</P></a></li> </ul> </section>

3 Answers

Abraham Juliot
Abraham Juliot
47,353 Points

this should work...

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Web/Designer</title>
    <link href="css/normalize.css" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Cinzel|Maven+Pro|Play" rel="stylesheet">
    <link href="css/main.css" rel="stylesheet">
    <link href="css/responsive.css" rel="stylesheet">
</head>
<body>
    <section>
        <ul id="gallery">
            <li>
                <a href="..........."><img alt="" src="img/second2.jpg">
                <p>Learn about HTML5 and CSS</p></a>
            </li>
            <li>
                <a href="--------"><img alt="" src="img/third3.jpg">
                <p>Learn how to preparing for a web Design</p></a>
            </li>
            <li>
                <a href="----------"><img alt="" src="img/first1.jpg">
                <p>How to create a Web step by step</p></a>
            </li>
            <li>
                <a href="img/Web5.jpg"><img alt="" src="img/Web5.jpg">
                <p>Get in Coding</p></a>
            </li>
        </ul>
    </section>
</body>
</html>
Sandeep Singh
Sandeep Singh
3,582 Points

Sorry ....still not working ?

how to add screen shot in comment?

Abraham Juliot
Abraham Juliot
47,353 Points

here's the markdown syntax. You can upload images to postimages.org

![title](https://postimages.org/...)
Sandeep Singh
Sandeep Singh
3,582 Points

Thanks ...Abraham Juliot