181
Points
Questions
9
Answers
9
-
Asked on June 9, 2024 in Sports.
Bangladesh at 1999 Cricket World CupThey also lost their second group match against West Indies by 7 wickets. However Bangladesh tasted their first World Cup victory against another associate nation Scotland in their third group match courtesy of Minhajul Abedin’s well made 68* where they defeated Scotland by 22 runs.
- 142 views
- 1 answers
- 0 votes
-
Asked on June 6, 2024 in Health.Eat more vegetables and fruitsVegetables and fruits, like other plants or plant-based foods, contain substances that may help prevent heart disease. Eating more fruits and vegetables also may help you eat less higher calorie food. Some examples of high-calorie foods are meat, cheese and snack foods.
- 119 views
- 1 answers
- 0 votes
-
Asked on October 2, 2021 in Technology.
These days, almost every graphic design job you’ll chase will have some degree of web design as a requirement. There are very few print-only graphic design jobs anymore, and fewer every day as dinosaurs like me retire.
Which is better? You need both. At minimum, learn HTML, CSS, and Java Script, color theory, composition, typography, photography, design fundamentals, print production, and more. Build a great portfolio that shows your mastery of design, regardless of reproduction method, and also in print, digital, and online. Learn Adobe Creative Cloud, and #2 pencil on tracing paper, and everything in between.
There has never been a better time to learn Communications Design than now.
- 241 views
- 1 answers
- 0 votes
-
Asked on September 20, 2021 in Internet.
- Go to your settings.
- Click on “Emails and Notifications”
- You will see a long list of things that Quora will send emails on.
- Start unchecking boxes.
- If you want zero emails, uncheck ALL the boxes.
- Enjoy only emails that you want to receive.
- 267 views
- 1 answers
- 0 votes
-
Asked on September 17, 2021 in Wordpress.
Audio files can be music files or voice recordings, such as recordings of you speaking to your WordPress blog readers. These files add a nice personal touch to your blog. You can easily share audio files on your blog by using the Add Media feature in WordPress.
After you insert an audio file in a blog post, your readers can listen to it on their computers or download it onto an MP3 player and listen to it while driving to work, if they want.
To upload an audio file to your site, follow these steps:
-
Click the Add Media button on the Edit Post or Add New Post page.
The Insert Media window appears.
-
Click the Upload Files tab at the top and then click the Select Files button.
-
Select the audio file you want to upload and then click Open.
The audio is uploaded from your computer to your web server, and the Insert Media window displays your uploaded audio selected and ready for editing.
-
In the Attachment Details section, type a title for the file in the Title text box, a caption in the Caption text box, and a description in the Description text box.
-
Still in the Attachment Details section, select the Link To option.
You can link to a custom URL, the attachment page, or the media file, or you can link to nothing at all.
-
Click the Insert into Post button.
WordPress doesn’t automatically include an audio player interface for playing your file. Instead, WordPress inserts a link your readers can click to listen to the audio file.
- 266 views
- 1 answers
- 0 votes
-
-
Asked on September 13, 2021 in Website.
Let’s suppose you’ve finished your kick-ass app using the latest technology. You want to add some flare. When someone visits your website URL, they should see an icon that identifies your app in their browser bar. You have your design ready, and you want to add your favicon to the page.
First you have to make sure your image is either an ICO file or save it as PNG (to preserve transparency). The file should be at least 16×16 in size. Then, convert the image into the ICO format.
Why are we converting to ICO? We do so because browsers have many resolutions, and favicons are used as shortcut icons. An ICO file will contain many PNG images inside to support different resolutions and shortcuts. But, ICO has its drawbacks, as we’ll discuss in a moment.
You can use one of the many online tools out there to convert an ICO from a PNG image.
Your browser will pick your favicon from by dropping the file on the root directory. As practice, let’s add the favicon.ico to the index.html between the <head> tag. Add the following code to your <head> tag:
<link rel="icon" href="/favicon.ico" type="image/x-icon">
Refresh and check your icon pop up on the tab! Breeze.
Our image location is /favicon.ico. This refers to the favicon.ico file in the root folder of our website. The root folder is the main folder, usually the one in which an index.html file is placed.
Note: If you get a “favicon.ico Not Found error”, make sure the icon is named favicon.ico. Then, make sure your icon is in the main folder of your site. Finally, check that your index.html is placed in the file you request on your web page.
Favicon HTML: A More Compatible Way to Add a Favicon
You might notice that the favicon does not work across all systems. This is because the ICO format is not as reliable anymore. To fix this, HTML5 introduced the sizes attribute, so we could rely directly on PNG files. Today we don’t have to necessarily compress a PNG to an ICO!
We can save our PNG image in three sizes to match the favicon.ico (16×16), taskbar (32×32) and shortcut icons (96×96). Then our HTML code <head> tag can be changed as:
<link rel="icon" type="image/png" href="/favicon16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon96x96.png" sizes="96x96">This should make our website or app more consistent with modern standards!
HTML Add Favicon: Getting More Complex
When it comes to web browser mobile support or larger displays, our potential favicon list continues to expand.
Take for example the apple-touch-icon, which is basically the icon when you add to the home screen on an iOS device. Well, if you want to optimize for iOS devices, yes you’ll need a specific favicon for that.
Behold, our list of favicons grows:
<link rel="apple-touch-icon" sizes="72x72" href="touch-ipad.png" >
<link rel="apple-touch-icon" sizes="114x114" href="touch-iphone.png" >
<link rel="apple-touch-icon" sizes="152x152" href="touch-ipad-ret.png" >- 221 views
- 1 answers
- 0 votes
-
- 417 views
- 1 answers
- 0 votes
-
- 420 views
- 1 answers
- 0 votes
-
- 433 views
- 1 answers
- 0 votes