Question

Need help with defining the terms that aren't crossed out. :)

LESSON 2 & 3 Tutorial 8 Creating Effective Web Pages Secure server Dedicated server Shared server Bandwidth Data transfer Con

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1. Markup language

A markup language is a computer language that uses tags to define elements within a document. It is human-readable, meaning markup files contain standard words, rather than typical programming syntax. While several markup languages exist, the two most popular are HTML and XML.


2. World Wide Web Consortium(W3C)
The World Wide Web Consortium (W3C) is a universal association focused on improving the web. It is comprised of a few hundred part associations from an assortment of related IT businesses. W3C sets principles for the World Wide Web (WWW) to encourage interoperability and participation among all web partners. It was set up in 1994 by the maker of the WWW, Tim Berners-Lee.Its strategic to lead the World Wide Web to its maximum capacity by creating norms, conventions and rules that guarantee its long haul development.

3) Extensible Markup Language (XML)


Extensible Markup Language (XML) is a basic, entirely adaptable content organization got from SGML (ISO 8879). Initially intended to address the difficulties of huge scope electronic distributing, XML is additionally assuming an undeniably significant job in the trading of a wide assortment of information on the Web and somewhere else.

This page describe the work being done at W3C inside the XML Activity, and how it is organized. Work at W3C happens in Working Groups. The Working Groups inside the XML Activity are recorded beneath, together with connections to their individual site pages.

You can discover and download formal specialized determinations here, on the grounds that we distribute them. This isn't a spot to discover instructional exercises, items, courses, books or other XML-related data. There are a few connections beneath that may assist you with finding such assets.

4.EXtensible HyperText Markup Language (XHTML)

XHTML represents EXtensible HyperText Markup Language. It is the subsequent stage to development of web. The XHTML was created by World Wide Web Consortium (W3C). It encourages web designers to make the change from HTML to XML. Utilizing XHTML, designers can enter the XML world with all the highlights of it, and they can even now stay sure about the retrogressive and future similarity of the substance. The XHTML 1.0 is the primary record type in the XHTML family and it is Recommended by W3C in 26 January 2000.The XHTML5 is a standard and is utilized to build up a XML adjustment of the HTML5 determination.

The XHTML reports contains three sections, which are examined underneath:

  • DOCTYPE: It is utilized to proclaim a DTD
  • head: The head area is utilized to proclaim the title and different traits.
  • body: The body tag contains the substance of site pages. It comprises numerous labels.

5.Deprecated

A Deprecated language substance is one that is tolerated or supported however not prescribed. For instance, various components and properties are belittled in HTML 4.0 , implying that different methods for achieving the errand are liked. Many expostulated highlights got outdated in HTML5, in spite of the fact that programs that help the highlights may keep on supporting them. In the Java programming language, a specific strategy might be censured for a given class of items.

Indeed, even broad ways to deal with something can be deplored. Security through lack of clarity,

6. Nested tags

HTML tags ought to be "nested" in a proper request, implying that the label opened most as of late is consistently the following tag to close. In the accompanying model, the HTML code is settled effectively, and we've attracted lines to interface opening and closing tags.

7.Attributes

Attributes characterize extra characteristics or properties of the component, for example, width and stature of a picture. Characteristics are constantly indicated in the beginning tag (or opening tag) and for the most part comprises of name/esteem sets like name="value". Property estimations ought to consistently be encased in quotes.

Additionally, a few qualities are required for specific components. For example, a <img> label must contain a src and alt properties.

8.Web- safe colour palette

Web safe colors are shaped by the mix of red, green and blue (RGB) hex estimations of 0,33H,66H,99H,CCH,FFH.

This outcomes with 6*6*6 = 216 colors.

Beforehand programs didn't support show of in excess of 256 hues palette simultaneously. With the new internet browsers it isn't important to utilize just these colors.

9.Bulleted list (unordered list)

HTML Unordered List or Bulleted List shows components in bulleted position . We can utilize unordered rundown where we don't have to show things in a specific request. The HTML ul tag is utilized for the unordered rundown. There can be 4 kinds of bulleted list:

  • plate
  • circle
  • square
  • none
  • Type "disc" This is the default style. Right now, list things are set apart with bullets.
  • Type "circle"   In this style, the rundown things are set apart with circles.
  • Type "square"   In this style, the rundown things are set apart with squares.
  • Type "none"   In this style, the rundown things are not marked .

10.Numbered list(ordered list)

HTML Ordered List or Numbered List shows components in numbered design. The HTML ol tag is utilized for requested rundown. We can utilize requested rundown to speak to things either in numerical request group or in sequential order request position, or any organization where a request is underlined. There can be various kinds of numbered list;

  • Numeric Number (1, 2, 3)
  • Capital Roman Number (I II III)
  • Little Romal Number (I ii iii)
  • Capital Alphabet (A B C)
  • Little Alphabet (a b c)

11. Definition list

HTML Description List or Definition List shows components in definition structure like in word reference. The <dl>, <dt> and <dd> labels are utilized to characterize portrayal list.

The 3 HTML depiction list labels are given beneath:

  • <dl> tag characterizes the depiction list.
  • <dt> tag characterizes information term.
  • <dd> tag characterizes information definition (depiction).


<dl>
<dt>HTML</dt>
<dd>is a markup language</dd>
<dt>Java</dt>
<dd>is a programming language and platform</dd>
<dt>JavaScript</dt>
<dd>is a scripting language</dd>
</dl>

12.Image
Images are imperative to decorate just as to delineate numerous intricate ideas in basic manner on your website page. This instructional exercise will find a way to utilize pictures in your website pages.

The <img> tag is an empty tag, which implies that, it can contain only list of attributes and it has no closing tag.
<img src = "Image URL" ... attributes-list/>

13.Relative Path

The relative file path specifies to a file which is related to the location of current page.

<!DOCTYPE html>
<html>
<body>
<h2>Using a Relative File Path</h2>
<img src="image path" alt=" " style=" ">
</body>
</html>

14.Absolute path

Here and there you will need to connection to different documents inside your server however in various organizers. Suppose your .html document is in the root organizer, and your server's space name is www.myserver.com. On the off chance that you need to make a connect to a document named second.html that is put inside a subfolder named myfolder you could utilize an outright way in your href parameter.


<a href="http://www.myserver.com/myfolder/second.html">Click here</a>

15.Anchor tag

The HTML anchor tag characterizes a hyperlink that joins one page to another page. It can make hyperlink to other site page just as documents, area, or any URL. The "href" quality is the most significant trait of the HTML a tag. what's more, which connects to goal page or URL.

<a href = "..........."> Link Text </a>

16. Target or target page

The HTML target Attribute is utilized to indicate where to open the connected report. It tends to be utilized on different components, for example,

  • <a> target Attribute
  • <area> target Attribute
  • <base> target Attribute

<element target="_blank|_self|_parent|_top|framename"\>

17. Bookmark
HTML bookmarks are utilized to permit perusers to jump to explicit parts of a Web page. Bookmarks can be valuable if a site page is long. To make a bookmark - first make the bookmark, at that point add a connect to it.

At the point when the connection is clicked, the page will look down or up to the area with the bookmark.

18. Style

Styles in HTML are fundamentally decides that portray how a report will be introduced in a program. Style data can be either joined as a different record or inserted in the HTML report.

There are 3 different ways of executing style in HTML :

  • Inline Style : In this technique, the style characteristic is utilized inside the HTML start tag.
  • Embedded Style : In this strategy, the style component is utilized inside the <head> component of the report.
  • External Style Sheet : In this strategy the <link> component is utilized to highlight an outside CSS document.

19. JavaScript

JavaScript (JS) is a lightweight, deciphered, or without a moment to spare aggregated programming language with five star capacities. While it is most notable as the scripting language for Web pages, numerous non-program situations likewise use it, for example, Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a model based, multi-worldview, single-strung, unique language, supporting article arranged, objective, and revelatory (for example useful programming) styles.

20 Scripting language

Scripting language is a coding languages with a progression of orders inside a record that is equipped for being executed without being incorporated. Genuine instances of server-side scripting dialects incorporate Perl, PHP, and Python. The best case of a customer side scripting language is JavaScript.

21.Browser extension

A browser extension is a little programming module for tweaking an internet browser. Programs ordinarily permit an assortment of augmentations, including UI adjustments, advertisement blocking, and treat the executives. Program modules are a different kind of module.

22. Plug-in

Plug-in offer a rich variety of highlights that can expand the adaptability of Gecko-based programs. Modules like these are currently accessible:
Multimedia viewers, for example, Adobe Flash and Adobe Acrobat utilities that give object inserting and pressure/decompression administrations applications that run from individual data chiefs to games

The scope of opportunities for utilizing module innovation appears to be unfathomable, as appeared by the developing quantities of autonomous programming sellers who are making new and imaginative modules.

With the Plug-in API, you can make powerfully stacked modules that can:

  • register at least one MIME types
  • bring into a piece of a program window
  • get console and mouse occasions
  • get information from the system utilizing URLs
  • present information on URLs
  • include hyperlinks or hotspots that connect to new URLs
  • bring into areas on a HTML page
  • speak with JavaScript/DOM from local code

23. Flash Player

Adobe Flash Player is PC programming for utilizing content made on the Adobe Flash stage ... Configuration venture, which utilized the SWF document organization and AMF as a methods for Flash applications to trade information with server side application

  • Windows, macOS, Linux, Chrome OS‎: ‎32.0.0.3
  • Android 2.x and 3.x‎: ‎11.1.111.73.
  • Web Explorer 11 and Edge‎: ‎32.0.0.330
  • Android 4.0.x‎: ‎11.1.115.81/September 10, 20

24.Shockwave Player

ShockWave Player is an extra produced for Windows conditions. Because of which you will have the likelihood to appreciate a large number of the sight and sound substance made using Adobe.

With this little apparatus, you will never discover holes in the destinations you visit since gratitude to it there will consistently show up the various games or pictures with the first development.

25.Raster Graphics

Raster Graphics, additionally called bitmap graphics, a sort of computerized picture that utilizes little rectangular pixels, or picture components, organized in a matrix development to speak to a picture. Since the organization can bolster a wide scope of hues and portray inconspicuous graduated tones, it is appropriate for showing constant tone pictures, for example, photos or concealed drawings, alongside other nitty gritty pictures.

26.Vector graphics

Vector graphics is the formation of digital images through a grouping of orders or numerical articulations that spot lines and shapes in a given two-dimensional or three-dimensional space. In material science, a vector is a portrayal of both an amount and a bearing simultaneously. In vector graphics, the document that outcomes from a visual craftsman's work is made and spared as an arrangement of vector articulations. For instance, rather than containing a piece in the record for each piece of a line drawing, a vector realistic document depicts a progression of focuses to be associated. One outcome is an a lot littler document.

27. Image editing program

Software that permits pictures to be altered and furthermore changed over to various designs positions. Image editing program commonly manage just bitmapped pictures, for example, GIFs, JPEGs and BMPs; be that as it may, a few editors bolster the two bitmaps and outlines . Normal capacities are physically editing and resizing the picture and utilizing "channels" to modify splendor, difference and hues. Heap channels are accessible for embellishments Red eye evacuation is remembered for editors particular for photographs (see photograph proofreader).

28 Secure Server
A secure server is a Web server that ensures secure online exchanges. Secure servers utilize the Secure Sockets Layer (SSL) convention for information encryption and decoding to shield information from unapproved interference. Secure servers are utilized by online retailers and any association with a Web nearness.

29. Dedicated server
A dedicated server is a single PC in a system held for serving the necessities of the system. For instance, a few systems necessitate that one PC be put aside to oversee correspondences between the various PCs. ... In the Web facilitating business, a committed server is regularly a leased assistance.

30. Bandwidth
bandwidth capacity is the most extreme pace of information move over a given way. Transmission capacity might be described as system transfer speed, information data transfer capacity, or advanced transfer speed. This meaning of transmission capacity is rather than the field of sign handling,

Sorry due to sortage of time i am not able to give the answers of All the parts Thankyou Stay Safe Stay Home

Add a comment
Know the answer?
Add Answer to:
Need help with defining the terms that aren't crossed out. :) LESSON 2 & 3 Tutorial...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • JUDY'S HTML TUTORIAL MENU CREATING YOUR FIRST WEB PAGE The best way to make a web...

    JUDY'S HTML TUTORIAL MENU CREATING YOUR FIRST WEB PAGE The best way to make a web page is to just dive right in. Open Notepad. To open notepad in Windows, click the windows icon in the lower left corner of the screen and then type "notepad." Notepad is a text editor. Other text editors you may consider are TextPad, Sublime Text, or NotePad++. Do not use Word or WordPad; they are word processors. If you are using an Apple computer...

  • Question 1 ​ A URL is a ____-part addressing scheme a. ​two b. ​four c. ​three...

    Question 1 ​ A URL is a ____-part addressing scheme a. ​two b. ​four c. ​three d. ​one Question 2 ​ A text file that contains HTML tags is called a(n) ____. a. ​server b. ​HTML document c. ​browser d. ​IP address Question 3 ​ A(n) ____ comes into existence as soon as a work is placed into a tangible form. a. ​open-source project b. ​copyright c. ​reproduction notice d. ​lien Question 4 ​ A(n) ____ is a small file...

  • You need not run Python programs on a computer in solving the following problems. Place your...

    You need not run Python programs on a computer in solving the following problems. Place your answers into separate "text" files using the names indicated on each problem. Please create your text files using the same text editor that you use for your .py files. Answer submitted in another file format such as .doc, .pages, .rtf, or.pdf will lose least one point per problem! [1] 3 points Use file math.txt What is the precise output from the following code? bar...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT