Posts

Samsung Galaxy F62 | Samsung Galaxy F62 with 6.7-inch FHD+ AMOLED Infinity O Display, Exynos 9825, 7000mAh battery launched in India starting at Rs. 23999

Image
Samsung Galaxy F62 ( F series ) Samsung Galaxy F62 with 6.7-inch FHD+ AMOLED Infinity O Display, Exynos 9825, 7000mAh battery launched in India Samsung launched the Galaxy F series in India .  It has a 6.7- inch Full HD plus Infinity-O Super AMOLED Plus display.  The model name is galaxy F62, It is a dual sim smartphone, Display Size 17.02 cm (6.7 inches) and resolution is 2400*1080 pixel, Internal Storages is 128 GB and ram-8 GB, Battery 7000mAh Battery. In this smartphone Side-mounted Fingerprint sensor, Octa-Core Samsung Exynos 9 Series 9825 7nm processor. the phone supports 25W super-fast charging and allows users to enjoy power throughout the day. A 25W travel adaptor is included in the box. It is available in three different Colours Laser Green, Laser Blue and Laser Grey colours. It will be available from Flipkart  and Samsung Online and the  price is Rs. 23,999. specifications: - Model Name -  Galaxy F62 Colour-  Laser Green, Laser Blue and Laser Grey SIM Type- Dual Sim Side-m

CRUD Operations using Django | CRUD Operation | Create Data | Read Data | Update Data | Delete Data | Django Framework | The ACX

 CRUD Operations using Django Create Data       def index(request): if request.method == 'POST' : fm=student(request.POST) if fm.is_valid(): nm = fm.cleaned_data[ 'name' ] em = fm.cleaned_data[ 'email' ] pw = fm.cleaned_data[ 'password' ] reg = User( name =nm, email =em, password =pw) reg.save() else : fm=student() return render(request, 'index.html' ,{ 'form' :fm}) Read Data      def Show_data(request): stud = User.objects.all() return render(request, 'Showdata.html' ,{ 'stu' :stud}) Update Data      def Update_data(request): if request.method == 'POST' :         pi=User.objects.get( pk =id) fm=student(request.POST, instance=pi) if fm.is_valid(): nm = fm.cleaned_data[ 'name' ] em = fm.cleaned_data[ 'email' ] pw = fm.cleaned_data[ 'password' ]

Difference between HTML and HTML5 | HTML and HTML5 | HTML | The ACX

Difference between HTML and HTML5 HTML:- The language in HTML does not have support for video and audio. The HTML browser uses cache memory as temporary storage. Uses cookies to store data. In HTML, the browser interface and JavaScript running in the same thread. It is not possible to create shapes like  circles, rectangles, triangles . The Works with all older browsers. HTML 5:- HTML5  supports both video and audio. HTML5 has storage options like  application cache, SQL database,  and  web storage . Uses local storage instead of cookies. The HTML5 has the JavaScript Web Worker API, which allows the browser interface to run in multiple threads. Using html5, you can draw shapes like circles, rectangles, triangles. A new browser supports this.

How to install Pip pillow | Install Pip Pillow | Python pip | Python pillow tutorial

Image
There are 3 way to install pip pillow Installed the pip using the command:- pip install pip pip install Pillow Building on Windows using MSYS2/MinGW Download  MSYS2 MinGW 32-bit or MSYS2 MinGW 64-bit. Installed Python and GCC. Then, Run following Command One by one in MSYS2 MinGW.       4.Installed the pip using the command:-  pip install pip pip install Pillow Download the zip file Pillow and merge it. Pillow zip file:- Click Here

How to make money online for free | How to earn money online in India for students | The ACX

 4 Best way to Earn Money  Freelance  Blogging Affiliate Marketing Gaming Freelancing Here different type of jobs are available for short-term assignments or contracts with number of companies, websites, organizations, etc., It is easy to earn money working as a freelancer. As a new freelancer, you must be looking for the best freelance job sites for beginners. Some of the most popular websites are:- a.    Fiverr b.    Upwork c.     flexjobs Blogging We'll be honest: It's very easy to earn money.  Blogging refers to writing, photography, and other media that's self-published online. Blogging started as an opportunity for individuals to write diary-style entries, but it has since been incorporated into websites for many businesses. You have two main options:-blog – you can use a free blogging platform, or you can create your own website. how you can make a profit with your blog. a.Monetize with CPC or CPM Ads b.Sell Private Ads c.Affiliate Marketing A

How to Set Background Image In Html | How to add background image in css | Background-image: url path | Html Background | The ACX

Image
HTML Background Images Add a background image on an HTML element, using style attribute in Html and the CSS  background-image  property:-  Ex. < div  style ="background-image: url('(photo name).jpg');" > Also We Can Use  <style>  element for  background image,  in the  <head>  section:-  Ex. < style > div  {   background-image :  url(' (photo name) .jpg') ; } < /style > Background Cover If you want the background image to cover the entire element then, you can set the  background-size  property to  cover. Also, Set the element is always covered and set the background-attachment property to fixed:- Ex. < style > body  {   background-image :  url(' (photo name) .jpg') ;    background-size :  cover ;    background-attachment :  fixed ;    background-repeat :  no-repeat ; } < /style >

How to Handle Html tags in color | Html color picker | How to change text color in html | Color tag in Html | Tags in Html | The ACX

Image
You can specify colors on page level using <body> tag otherwise you can set colors for individual tags using bgcolor attribute. The <body> tag has the following attributes which can be used to set different colors − bgcolor − sets a color for the background of the page. text − sets a color for the body text. alink − sets a color for active links or selected links. link − sets a color for linked text. vlink − sets a color for visited links − that is, for a linked text that you have already clicked on. HTML Color Coding Methods Color names − You can specify color names directly like green, blue or red. Standard Color Hex codes − A six-digit code representing the amount of red, green, and blue that makes up the color. Hex Color Color decimal or percentage values − This value is specified using the rgb( ) property. rgd Color