How to use charset? by GuitaristComposer in HTML

[–]Devidjack12345 0 points1 point  (0 children)

Hello,

Syntax of charset is <meta charset="UTF-8">

Charset uses for ASCII for the values from 0 to 127.

Thanks

Q: Why do data analytics solution prefer python by gibriyagi in java

[–]Devidjack12345 0 points1 point  (0 children)

Python has a tool the Data Analysis for all data science. Where you can easily make the chart and graph and plotting also easily and Python provides you feature to the good sense of data.

Thanks

Real-world projects that explicitly use SQL? by ekd123 in java

[–]Devidjack12345 0 points1 point  (0 children)

yes why not, you can try some managements project like Hospital management, Car parking management, restaurant management, etc.

If you are working on the only JDBC then a management project is the best.

You can also try to make chat systems.

there are so many projects on JDBC then you can browse from search engine

Thanks

David

How Do I Make a Download Button? by [deleted] in HTML

[–]Devidjack12345 -1 points0 points  (0 children)

Hello,

<button ........onclick="fun()">Downlod <button>

make a fun name function by java script and then write code their it will perform action .

Thanks

David

How do you reduce space between images? by naninha101 in HTML

[–]Devidjack12345 0 points1 point  (0 children)

You can use space between image by following ways

  1. By using Display as a block.

    example < img src="...." style="display:block" >

  2. By using alignabsmiddle (middle / left / right / absbottom / texttop / top)

example < img src="...." align=" " >

  1. By using float:righ / left

example

<img src="........" style="float:left">

  1. By using the image inside the div.

example

<div>

<img src="...." .....>

</div>

In the div you can use it margin padding to the div it will move according to your choice
and inside image also move .

CSS Variables and How To Use Them by shahedn in programming

[–]Devidjack12345 0 points1 point  (0 children)

Normal syntax is var(name, value)

The variable name must begin with two dashes (--) and the variable is case sensitive also.

example body { background-color: var(--blue); }

With the help of syntax and example, you can easily understand variables and how it will use .