SAY NO TO DRUGS

Image
SAY NO TO DRUGS   Saying No to Alcohol and Drugs Topic Overview Alcohol is part of many traditions and is often served at parties and other functions. And although many drugs are illegal or legal only with a prescription, people may offer them to you. If you're in a situation where someone is offering you alcohol or drugs, try this: Look the person in the eye. In a firm voice, tell the person you don't want to drink or use drugs. Say something like: "No, I'm sorry, but I don't use...." "No, I'm really trying to stay clean." "No, I'm trying to cut back." Give a reason why you don't want to drink or use drugs. Say something like: "It's bad for my health." "I could lose my housing." "I have trouble when I use...." Ask the person not to ask you to drink or use drugs again. Say something like: "Hey, I said I'm trying to stay clean, so don't ask me again." "I told you I don'...

HTML LANGUAGE

HTML language
Image result for define html
Stands for "Hypertext Markup Language." HTML is the language used to create webpages. "Hypertext" refers to the hyperlinks that an HTML page may contain. "Markup language" refers to the way tags are used to define the page layout and elements within the page.
Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text.
Image result for define html<!doctype html>
<html>
<head>
<title>TechTerms.com</title>
</head>
<body>
<p>This is an example of a paragraph in HTML.</p>
</body>
</html>
The first line defines what type of contents the document contains. "<!doctype html>" means the page is written in HTML5. Properly formatted HTML pages should include <html><head>, and <body> tags, which are all included in the example above. The page title, metadata, and links to referenced files are placed between the <head>tags. The actual contents of the page go between the <body> tags.
Image result for define htmlThe web has gone through many changes over the past few decades, but HTML has always been the fundamental language used to develop webpages. Interestingly, while websites have become more advanced and interactive, HTML has actually gotten simpler. If you compare the source of an HTML5 page with a similar page written in HTML 4.01 or XHTML 1.0, the HTML5 page would probably contain less code. This is because modern HTML relies on cascading style sheets or JavaScript to format nearly all the elements within a page.
WRITTEN BY: ROCKY SINGH 

Comments

Popular posts from this blog

Is Tiktok Is BACK!

HOW TO LEARN C++

SAY NO TO DRUGS