Sublime Forum

I need help

#1

Brothers i need some help im new for the html5 and css
I create one html file then i try to link css file but everything is ok i do everythig i put every tag but its not working can someone help me plz
My operation systm is windows 10 and im using sublime text 3

0 Likes

#2

What are the steps to reproduce the problem? You can take screenshot and/or record a video?

0 Likes

#3

This is the my html file i write my file address but its not linkig

0 Likes

#4

this is the css file

0 Likes

#5

What do you mean by not linking?

0 Likes

#6

What do you expect? The link to the css file should work and the side search should be on the right side. The other two divs you access in the css file are empty, hence you won’t see a difference if you change their style.

0 Likes

#7

Thats why i talking about side search button should be on right side right? But its not happen still the same

0 Likes

#8

Oh I see you have

<div class="site-search"></div>
    <form method="get" action="index.html">
        <input type="search" name="search-box">
        <button type="submit">Go</button>
    </form>

instead of

<div class="site-search">
    <form method="get" action="index.html">
        <input type="search" name="search-box">
        <button type="submit">Go</button>
    </form>
</div>

You also directly close all other divs and not where you may want to.

0 Likes

#9

Thank you brother i will try this one thanks a lot

0 Likes

#10

brothers how can i put this tag? Whats the letter i need to type in sublime to get this tag

0 Likes

#11

That’s a comment you can press ctrl+/ to comment the current line or ctrl+shift+/ to comment the selected text. If you don’t have an english keyboard the kbd can be different.
Aside from that I recommend to switch to Sublime Text 3,

0 Likes

#12

Thank you brother

0 Likes