HTML5: duplicated Chome setting menu

hello all, I got few general questions here:

  1. please check my code, how can it be optimized? (just finished chapter, decided to create something)
  2. how to show text symbols " > ; } if we using them in syntax?
  3. why the technology downgraded? 10 years ago, people we creating web site with
    “dreamweaver”, now in 2019 we have to type in HTML code with hands?! o_O
  4. in CHROME when you press CLTR+SHIFT+I, It will take you to developer mode, where you can see all the css styles, and HTML, so why people are still paying $50000 for a website, if technically it can be copied/stolen with open source code?
  5. <!DOCTYPE html>
    <html>
    <head>
      <head>
    <link href="style.css" type="text/css" rel="stylesheet">
    </head>
      <title>
      	CHORME SETTINGS
      </title>
    </head>
    <body>
    <table>
      
      <thead>
        <tr>
    	    <th colspan="4">(CHORME SETTINGS)</th>
    		</tr>        
    	</thead>
      
    <tbody>
      <tr>
        <td colspan="3">New Tab </td>
        <td>Ctrl+T</td>
      </tr>
      <tr>
        <td colspan="3">New Window </td>
        <td>Ctrl+N</td>
      </tr>
      <tr>
        <td colspan="3">New Incognito window </td>
        <td>Ctrl+Shift+N</td>
      </tr>
      <tr>
        <td colspan="3">History</td>
        <td> > </td>
      </tr>
      <tr>
        <td colspan="3">Downloads</td>
        <td>Ctrl+J</td>
      </tr>
      <tr>
        <td colspan="3">Bookmarks</td>
        <td>></td>
      </tr>
      <tr>
        <td>Zoom</td>
        <td colspan="2"> - 100% + </td>
        <td>[ ]</td>
      </tr>
      <tr>
        <td colspan="3">Print...</td>
        <td>Ctrl+P</td>
      </tr>
      <tr>
    	  <td colspan="4">Cast...</td>
      </tr>
      <tr>
        <td colspan="4">Find...</td>
      </tr>
      <tr>
        <td colspan="3">More tools</td>
        <td> > </td>
      </tr>
      <tr>
        <td>Edit</td>
        <td>Cut </td>
        <td>Copy </td>
        <td>Paste </td>
      </tr>
      <tr>
        <td colspan="4">Settings </td>
      </tr>
      <tr>
        <td colspan="3">Help </td>
        <td>></td>
      </tr>
      <tr>
    		<td colspan="4">Exit</td>
      </tr>
    </tbody>
    
      </table>  
    </body>
    </html>
    
1 Like

Looks ok, can’t see your css. But the html looks fine.

For these cases we use the html code for these characters. A list of all html special characters can be found here. The chanracter that you are looking for is &#62;.

It really does not matter does it ? Dreamweaver is just an IDE that helps you built the html. The only bad thing about it is the company behind it “Adobe”.
Problem with dreamweaver is. If adobe go’s out of business. what would you use ?

You should not do this for official projects that are intended to make money. The problem with copy pasting in general is that you dont know what else comes with it. If you do know, you probably have read the css good enough that you could have written it yourself anyway.

Also you might get the html and the css and maybe even the javascript but this does not make for a functioning website alone. There is often a framework on the back-end that does additional stuff wich is not accessible on the client side.

1 Like

Also, building off what @biirra said about your fourth question. You can do this even easier with Ctrl-U and then just copy all the code you see there :smiley: The thing is, most websites have like fifty different script sources, so sure you can copy the html and css, but it won’t work. Also, this is why websites have copyrights :stuck_out_tongue:

2 Likes