0% found this document useful (0 votes)
7 views62 pages

word2pdf_Chapter 2- Basics of HTML_1743060597810

Chapter Two discusses the fundamentals of web design and HTML, emphasizing the importance of creating web pages that are compatible across different browsers and devices. It outlines the steps for building a web page, including starting with content, structuring the document with HTML elements, and using CSS for styling. Additionally, it covers HTML tags, attributes, and the significance of semantic markup to enhance the meaning and structure of web content.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
7 views62 pages

word2pdf_Chapter 2- Basics of HTML_1743060597810

Chapter Two discusses the fundamentals of web design and HTML, emphasizing the importance of creating web pages that are compatible across different browsers and devices. It outlines the steps for building a web page, including starting with content, structuring the document with HTML elements, and using CSS for styling. Additionally, it covers HTML tags, attributes, and the significance of semantic markup to enhance the meaning and structure of web content.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 62
CHAPTER TWO HTML 1. General concepts of Web design ‘As a web designer, you spend a lot of time creating pages and change them until they look good in your browser. Before you grow too attached to the way your page looks on your screen, you should know that it is likely to look different to other people. That's just the nature of web design—you can't guarantee that everyone will see your page the way you do. The way your site looks and performs is at the mercy of a number of variables such as browser version, platform, monitor size, and the preferences or special needs of each individual user. Your page may also be viewed on a mobile device like cell phone, or using an assistive device like a screen magnifier or a screen reader. Browser Versions + One of the biggest challenges in designing for the Web is dealing with the different browsers * Inthe past browsers were so incompatible that web authors were forced to create two separate sites, one for Internet Explorer and one for Netscape. + Things have improved dramatically now that browsers have better support for web standards established by the World Wide Web Consortium (W3C for short) After we see a general overview of the web design environment, now it's time to roll up our sleeves and start creating a real web page. It will be a simple page, but even the most complicated pages are based on the principles described here. AWeb Page, Step by Step Step 1: Start with content. We add raw text content and see what browsers do with it. Step 2: Give the document structure. We learn about HTML elements and its structure. fo L_ Step 3: Identify text elements. You'll describe the content using the appropriate text elements and leam about the proper way to use HTML Step 4: Add an image. By adding an imageto the page, we will learn about attributes. Step 5: Change the look with a style sheet. We learn formatting content with CSS. Step1. Start with Content Rules Naming Conventions tis important that you follow these rules and conventions when naming your files: + Use proper suffixes for your files._HTML files must end with .html (some servers allow .htm). Web graphics must be labeled according to their file format: gif or jpg (jpeg is also acceptable) + Never use character spaces within filerames. It is common to use an underline character or dash to visually separate words within filenames, such as robbins_bio. htm! or robbins-bio.html + Avoid special characters such as?, %, #,/, 5+, ete. Limit filenames to letters, numbers, underscores, hyphens, and periods. Filenames may be case-sensitive, depending on your server configuration. Consistently using all lowercase letters in filenames, while not necessary, makes your filenames easier to manage +k Keep filenames short. Short names keep the character count and file size of your HTML file in check. If you really must give the file a long, multiword name, you can separate words with capital letters, such as ALongDocumentTitle html, or with underscores, such as a_long_document title html, to improve readability. Self-imposed conventions. Itis helpful to develop a consistent naming scheme for huge sites. For instance, always using lowercase with underscores between words. This takes some of the guesswork out of remembering what you named a file when you go to link to it later al | L_ What Browsers Ignore Some information in the source document will be ignored when it is viewed in a browse, including + Line breaks (carriage returns)_. Line breaks are ignored. Text and elements will wrap continuously until a new block element, such as a heading (h1) or paragraph (p), or the line break (br) element is encountered in the flow of the document text, «Tabs and multiple spaces_. When a browser encounters a tab or more than one consecutive blank character space, it displays a single space. So if the document contains: long, long ago the browser displays: long, long ago ye Unrecognized markup_. A browser simply ignores any tag it doesnt understand or that was incorrectly specified. Depending on the element and the browser, this can have varied results. The browser may display nothing at all, or it may display the contents of the tag as though it were normal text. Text in comments_. Browsers will not display text between the special tags used to denote a comment. See the HTML Comments sidebar. HTML Comments You can leave notes in the source document for yourself and others by marking them up as comments. Anything you put between comment tags ( ‘Step2. Give the Document Structure Introducing... the HTML element | L_ Opening tag Content losing tag (may be text and/or ether HIML elements) (starts witha) Content here Flerhent cont: BABBB1ack Goose Bistro 7HES| Elements are identified by tags in the text source. A tag consists of the element name (usually an abbreviation of a longer descriptive name) within angle brackets (<>). The browser knows that any text within brackets is hidden and not displayed in the browser window. The element name appears in the opening tag (also called a start tag) and again in the closing (or end) tag preceded by a slash (/). Be careful not to use the similar backslash cheracter in end tags. The tags added around content are referred to as the markup. Itis important to note that an element consists of both the content andits markup (the start and end tags). Not all elements have content, however. Some are empty by definition, such as the img element used to add an image to the page. Step 3: Identify Text Elements 4k Introducing...semantic markup The purpose of (X)HTML is to provide meaning and structure to the content 4 Itis not intended to provide instructions for how the content should look (its presentation). + Your job when marking up contents to choose the (K) HTML element that provides the most meaningful description of the content at hand. That is semantic markup Step 4. Add an Image well add an image to the page using the img element L_ Empty elements: are do not have text content because they are used to provide a simple directive. E.g. image element (img), line break (br), horizontal rule (hr) Attributes are instructions that clarify or modify an element. For the img element, the src (short for “source’) attribute is required, and provides the location of the image file via its URL. The syntax for attributes is as follows Step 5. Change the Look with a Style Sheet + Cascading Style Sheets (CSS) 2. Basics of HTML HTML, which stands for Hypertext Markup Language, is the predominant markup language used for creating web pages. A markup language is a set of markup tags, and HTML uses markup tags to describe web pages. HTML is written in the form of HTML elements consisting of HTML tags surrounded by angle brackets (e.g. ) within the web page content. HTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts in languages such as JavaScript which affect the behavior of HTML webpage. HTML can also be used to include Cascading Style Sheets (CSS) to define the appearance and layout of text. While a web developer, someone like you, uses the HTML tags to create the web page, software is required to interpret your code and display the information that you are trying to display: the software could be any web browser software. The purpose of a web browser is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page. s | L_ World Wide Web Consortium (W3C) is the organization that develops guidelines and specifications for many web technologies including HTML. The W3C website is found at www.w3.org. HTML document is created using a simple text editor like notepad or any other text editor. Notepad can edit HTML, and at the same time you are able to view what you edit, in a web browser. HTML, HEAD, TITILE and BODY Tags The entire web page document is contained within an tag. The tag is called the root element because it contains all the elements in the document. Every web page starts with tag and ends with . Let us first see how a plain html code looks like. stitle>Page title here Our body content here The total codeis divided into two parts and both the parts are kept inside tags. Our page should start with and should end with . The first part inside this html tagsis the head and it starts with and ends with . The second pert starts with and ends with tag. Inside the tag we keep all our content which we want to display to our web page users. Whatever we place in will be displayed by the browser to the web users. Inside the root element the document is divided in to two. Fig Basic HTML tags + The element, which contains information about the document such asa title or a link toa style sheet % ~~ The element, which contains the real content of the document that you see. Let’s see both pars in detail The web page should have only one head tag. The head tag starts with and ends with . The text or tags that are inside the head tag will not be displayed in the browser window. Inside this tag we keep all the meta keyword tags used for search engines. One of the important tags which is put inside is tag, Title tags are used to give title to the browser window and it displayed at the top left side of the window. Title tags are also important for our search engine point of view. We should keep most important keywords inside the title tag Example: stitle> First Example Here is the first example for Intemet Programming e = a «x 1 First Example x CO [O fley/cyjuses/.. | ye 2 OD & Here is the first example for Intemet Programming Fig Web page Title itis also possible to put JavaScript code and Cascading Style Sheets in head section. If we are adding any JavaScript code here then that will be loaded when the browser opens the page. The Element You should specify a title for every page that you write inside the <title> element. This element is a child of the <head> element. tis used in several ways: * Itdisplays at the very top of a browser window. * It is used as the default name for a bookmark in browsers. Example: Here is the example of using title tag. <head> <title-HTML Basic tags The Element This is where we will place our content for our visitors. What we place here will be displayed to our visitors. A element may contain anything from a couple of paragraphs under a heading to more complicated layouts containing forms and tables o[ | 3. HTML tags and their attributes Attributes provide additional information about HTML tags. HTML tags can have attributes %& Attributes provide additional information about a tag * Attributes are always specified in the start tag 4 Attributes come in name/value pairs like: name="value" The syntax for attributes is as follows: Example: the background color of HTML document can be changed using “bgcolor” attribute of the tag attribute Setting HTML Language The HTML lang attribute can be used to declare the language of a Web page or a portion of a Web page. This is meant to assist search engines and browsers. According to the W3C recommendation you should declare the primary language for each Web page with the lang attribute inside the tag, like this: ISO 639-1 defines abbreviations for languages. In HTML, they can be used in the lang attributes Table ISO code of some international and local languages Language ISO Code Chinese zh English En French Fr German De Russian Ru Local Languages Afar Aa ‘Amharic Am Afan Oromo | Om Somali So Tigrinya Ti Attributes Background Color You can change background color of your web page by using tag attribute bgcolor Color can be specified using color name or RGB value. The following also sets background color to green: Background Image We can use a background picture for web page instead of background color. You must have an image to do this. Then you can use background attribute of tag as follows Text Color a L_ We can also set the text color of the web page just like background color. We use text attribute of to do this. Example: Page with Back Color Page with yellow back color and red text color Output e@ - ao x Bri Example SO [O filey//C/users).. ¥ >a oOos %)/ DY Page with Back Color x Fig Background and text colors of body Other attributes %* — alink: Sets the color for active links or selected links. link: Sets a color for link text. x vlink: Sets a color for visited links - that is, for linked text that you have already clicked on. Example’ ctitle> Link Colors a second page
thitd page
Yahoo mail Here: Clickable part (link text): Yahoo mail and URL: http://mail. yahoo.com The target attribute Itis used to specify where to display the contents of a selected hyperlink. If set to: + _blankthen a new window will be opened to display the loaded page * _self then loads the new page in current window. By default its _self. a Example: a link that opens on a new window First Pages/a>
Thetitle attribute Thetitle attribute is used to type a short description of the link. If you place the cursor over the link, you will see the text in the title attribute. Example’
Send an email to home at gmail When the link is clicked, the default email program opens with a new blank message addressed to the specified email address. Remember that this function will only work if there is an email program installed on your computer. HTML Comments Comments are piece of code which is ignored by any web browser. It is good practice to comment your code, especially in complex documents, to indicate sections of a document, and any other notes to anyone looking at the code. Comments help you and others understand your code. HTML Comment lines are indicated by the special beginning tag placed at the beginning and end of every line to be treated as a comment. You can comment multiple lines by the special beginning tag placed before the first line and end of the last line to be treated as a comment. ra For example: Given line is a valid comment in HTML Working with Colors In HTML colors can be used to enhance the way your web page looks like. It can be used to change the background of your webpage, the color of your text or the content of a table. While choosing the right type of coloris your responsibility, HTML provides you with many options to mingle with. HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue colar values (RGB). The lowest value that can be given to one of the light sources is 0 (in HEX: 00). The highest value is 255 (in HEX: FF). HEX values are specified as 3 pairs of two-digit numbers, starting with a # sign For example: *& ~~ Red = #FFO000 Green = #00FFOO Blue = #0000FF Cyan (blue and green) = #0OFFFF Magenta (red and blue) = ##FOOFF + Yellow (red and green) = #FFFFOO Both and will change the background color in to red + OF 4. Text formatting with HTML and background changing There are options if one wants to create a text in HTML. Let's see some of the tags that can be used to create text information. HTML Headings In HTML, you can create different heading levels in your document to help you organize the document into sections, just as you might do when writing a book. A heading element briefly describes the topic of the section it introduces. Headings are defined with the

to

tags.

defines the largest heading and

the smallest heading u | L_ Example’

this is heading level 1.

this is heading level 2.

this is heading level 3.

this is heading level 4.

this is heading level 5.
this is heading level 6.
Ty Internet programming 3 © “ SO [0 tieviiciuser. &| ye BS this is heading level 1. | this is heading level 2. this is heading level 3. this is heading level 4. this is heading level 8. Fig HTML heading levels Heading tags are block tags, and you must specify opening and closing tags HTML Paragraphs Authors traditionally divide their thoughts and arguments into sequences of paragraphs. Along with using headings to structure your Web page, you can add structure by grouping common text into paragraphs. Paragraphs are defined with the

tag Example:

This is a paragraph

This is another paragraph

Both of the above tags will enforce a new line whenever you write the tag. The | BO

element is a block element. The align attribute You can use align attribute to align your paragraphs. Paragraphs can be left aligned, center aligned, right aligned or justified. You can do this by using align attribute. Align attribute can be used with other tags like headers, table, etc Example:

Heading Aligned Left

Font size="1"s/font> Font size="2" Font size="3" Font size="4" a | L_ Font size="5" Font size="6" e - Oo x Tine RISB inernetp SO [6 theviiciieer.. | Gy e & ¥ Fig Font size You can also specify relative font sizes instead of exact font size. This can be done like’ This specifies how many sizes larger or how many sizes smaller than the preset font size should be. Font Face: You can set any font you like using face attribute but be aware thatif the user viewing the page doesn't have the font installed, they will not be able to see it. Instead they will default to Times New Roman of your font with size attribute Example’ Times New Roman
Verdana
Comic Sans MS
WildWest
This text is blue color Here is some Hebrew text! This produces the following output Itxet werbeH emos si ereH Special Characters Characters within HTML documents that are not part of a tag are rendered as-is by the browser. However, some characters have special meaning and are not directly rendered, while other characters can't be typed into the source document from a conventional keyboard. Special characters need either a special name or a numeric character encoding for inclusion in an HTML document. Table Special characters a Character Code Shortname | Charactername " 8434; " quotation mark , 8439; ' apostrophe & 8438, amp, ‘Ampersand = 8#60; alt; Tess-than > 8H62; Bat greaterthan 8H160; ‘  non-breaking space i 8161 Biexcl, inverted exclamation mark ¢ 8162, ‘cent; Cent £ 8163; £ Pound a R164, Rourren; Currency ¥ 8#165; ayen; Yen i 8166; ‘¦, broken vertical bar § aH67, sect; Section 8168; uml; spacing diaeresis © R169, Rcopy; Copyright > a#170; Bord; feminine ordinal indicator “ #171, « angle quotation mark (left) = 8H172; ¬ Negation ® 8174, ® registered trademark z HITS ¯, spacing macron ° 8#176; ‘adeg; Degree £ 8417, ± plus-orminus 2 8#178; ² superscript 2 3 84179; ³ superscript 3 8#180, acute spacing acute 23) u a#i8t, µ Micro 1 ¶ ¶ Paragraph · · middle dot #184; ¸ spacing cedilla 7 8#185; ‘&supT; ‘superscript 1 ° BH186, Bordm; masculine ordinal indicator » » » angle quotation mark (right) % BH188, afract4; Fraction % % #189; afracl2; fraction % % ¾ ¾ fraction % t aHI9T, Biquest; inverted question mark x #215 times Multiplication > ÷, ÷ Division Working with Graphics and Images Images are very important to beautify as well as to depicts many concepts on your web page. Itis often said that a single image is worth than thousands of words. So as a Web Developer you should have clear understanding on how to use images in your web pages. In HTML, images are defined with the tag The The alt attribute The required alt attribute specifies an alternate text for an image, if the image cannotbe displayed. The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an od error in the src attribute) Example: Big Boat The width and height attributes To define the height and width of the image, rather than letting the browser compute the size, use the height and width attributes. The attributes: + width: sets width of the image. This can have a value like 10 (pixels) or 20% (percentage of the available window size) etc. height: sets height of the image. This can have a value like 10(pixels) or 20% (percentage of the available window size) ete. Example’ The border attribute The border attribute sets a border around the image. This will have a value like 1 or 2 ete. The align attribute The align attribute sets horizontal alignment of the image and takes value either left, ight or center. Example: Highland coffee a | 5. Tables in HTML. Creating Tables Tables are defined with the stable> tag. A table is divided into rows with the ‘tag, and each row is divided into data cells with the tag. td stands for ‘table data," and holds the content of a data cell. A tag can contain text, links, images lists, forms, other tables, ete. Table headers Headers in a table are defined with the tag. The text in a element will be bold and centered. Example:
Header 1 Header 2
row 1, cell 1 row 1, cell 2
row 2, cell 1 row 2, cell 2
HTML code above looks in a browser: Header 1 || Header 2 lrow 1, cell 1[row 1, cell 2 lrow 2, cell 1[row 2, cell 2 If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders ‘to show. Attributes of table: a The attributes of ¢ table will be applied on the whole table element which include one or more rows (), header cells () or data cells () Table 3 attributes of table Attribute Value Description align Teft ‘Specifies the alignment of a table according to antes surrounding text right bgcolor Tgb(%xx) | Specifies the background color for a table ARXXKXX colormam e background image ul! | Sets background image of the table border pixels Specifies the width of the borders around a table bordercolor Tgbq%XX) | Specifies the color used for the border PRXXKXX colomam e Cellpadding pixels Specifies the space between the cell wall and the cell content Cellspacing pixels Specifies the space between cells Width pixels Specifies the width of a table % Height pixels ‘Specifies the height of a table % Example: Row 1 Cell 1
Row 1 Cell 2 Row 1 Cell 3
Row 2 Cell 2 Row 2 Cell 3
Row 3 Cell 1
This produces the following output: Table Cellpadding and Cellspacing There are two attribiutes called cellpadding and cellspacing which you will use to adjust the white space in your table cell. Cellspacing defines the width of the border, while cellpadding represents the distance between cell borders and the content within. Example:
Names/th> Salary
Ramesh Raman 5000
Shabbir Hussein 7000
This produces the following output: af Name Salary Ramesh Raman || 5000 Name Salary! Shabbir Husscin | | 7000 atest Reset OD [Shabbir Hussein] 7000 Fig Table with cellpadding 15 and cellspacing 10 and table with no values set Attributes of rows and cells: this attributes will be applicable only to the header cell or the data cell if it is used with or tag while it will affect the whole content of the row if it is used by the tag. Table 2.2 attributes of rows and cells Attribute Value Description ‘Align Left] right] ‘Aligns the content in a cell center | justify bgcolor |~ rgb(xxx) Specifies a background color for a cell #00 Colorname colspan | Number Specifies the number of columns a cell should span rowspa | Number Sets the number of rows a cell should n span height Pixels Sets the height of a cell % (percent) width Pixels Specifies the width of a cell %e(percent) ad valign topimiddle| Vertical aligns the content in a table row bottom Spanning rows and cells it's sometimes necessary for data to span multiple rows or columns. This is achieved via the rowspan and colspan attributes, respectively. - to create a separate table header - to indicate the main body of the table. 4 - to create a separate table footer. A table may contain several elements to indicate different pages or groups of data. But itis notable that and . Example: stable border="1" width="100%"> This is the head of the table
This is the foot of the table
Cell 1 Cell 2 Cell 3
Cell 1 Cell 2 Cell 3
This produces the following output: al | ‘The emake oad oe Ths ho (ca (el (Cel! set ele Practice 2.1 1. Createa table that displays an exam schedule for your department? Using Ordered and Unordered List The most common HTML lists are ordered and unordered lists An ordered list: An unordered list! 1. The first list item © Listitem 2. The second list item © Listitem 3.__ The third list item e _Listitem Unordered List An unordered list starts with the
    tag. Each list item starts with the
  • tag The listitems are marked with bullets (typically small black circles). The “type” attribute can be used to specifies the style of the bullet points of the list items, its value includes disc, square and circle. Example:
    • Banana
    • Orange
    How the HTML code above looks in a browser: * Banana © Orange
      attributes: a ‘Attribut | Value Description e Type disc Specifies the style of the bullet points of the list items squere circle Ordered List An ordered list starts with the
        tag. Each list item starts with the
      1. tag. The list items are marked with numbers. Example: Types of fruits are
        1. Banana
        2. Orange
        3. Apple
        How the HTML code above looks in a browser: Types of fruits are 1. Banana 2. Orange 3. Apple The start attribute: If you want a numbered list to start at a number other than "1," you can use the start attribute to specify another starting number. Example
        1. Highlight the text with the text tool.
        2. Select the Character tab.
        ad The resulting list items would be numbered 17, 18, and 19, consecutively 17. Highlight the text with the text color 18. Select the Character tab. 19. Choose a typeface from the pop-up menu The
          attributes: ‘Atiribut | ___ Value] Description e Start number | Specifies the start point for the list items Type 7 Specifies which kind of bullet points will be \ used i A a Example: Types of fruits are
            Note: + The frameset column size can also be set in pixels (cols="200,500'), and one of the columns can be set to use the remaining space, with an asterisk (cols="25%?") You cannot use the body element together with the frameset element. However, if you add a tag containing some text for browsers that, al do not support frames, you will have to enclose the text in a body element. Attributes of frameset Attribute Value Description Cols pixels | Specifies the number and size of columnsin @ frameset % Rows pixels | Specifies the number and size of rows in a frameset % Example: <frameset cols="30%,*"> <frame sto="frame-one.himl’ /><frame sr </frameset> rame-two.html’ /> This produces the following output: Fig Frameset Attributes of frame ‘Attribute Value Description Scrolling Yes Specifies whether or not to display scrollbars in frame no auto Ste URE Specifies the URL of the document to show in a frame af L_ You can also nest framesets, to create a combination of columns and rows: <frameset rows="120"> <frame noresize="noresize" src="frame-one.htm|"> <frameset cols="150,*"> <frame sre="frametwo.html"> <frame src="frame-three.html"> </frameset> </frameset> Fig Nested frame Practice 2.3 1. Whatis the advantage of using frames 2. Createa web page that is divided in to three equal rows and the first row is divided in to two columns. Nested Frames Framesets may be nested to any level. in the following example, the outer FRAMESET divides the available space into three equal columns. The inner FRAMESET then divides the second area into two rows of unequal height. Example a <FRAMESET cols="33%, 33%, 34%"> <frame sro="one.html"> <FRAMESET rows="40%, 50%"> <frame sre="two.html"> <frame src="three.html"> </FRAMESET> <frame sto="four.html"></FRAMESET> This produces the following output Frame Frame pea One TwO Frame Three 7. Formsin HTML Building HTML Forms HTML forms are used to pass data to a server. Users generally "fill" a form by modifying its controls (entering text, selecting list items, etc.) before submitting the form for further processing by server (2g., to a Web server, to a mail server, etc.). Forms are a vital tool for the webmaster to receive information from the web surfer, such as: their name, email address, credit card, etc. A form will take input from the viewer and depending on your needs; you may store that data into a file, place an order, gather user statistics, register the person to your web forum, or maybe subscribe them to your weekly newsletter. A form will take input from the site visitor and then will post to your back-end application such as CGI, ASP. PHP script etc. Then your back-end application will a do required processing on that data in whatever way you like The <form> tag is used to create an HTML form: <form> input elements </form> The most important element inside form element is the input element. The input element is used to accept user information. An input element can vary in many ways, depending on the type attribute. An input element can be of type text field, checkbox, password, radio button, submit button, and more. The most used input types are described in the next subsections. Working with Text Fields and Passwords Text Field You can create text field by using: <input type="text"> This defines a one4ine input field that a user can enter text into. Text fields have two important attributes: name and value. The name attribute gives name to the text field for identification purpose and to make it easily accessible. The value attributes sets content of the text field <form> First name: <input type="text’ name="firstname" /><br /> ‘text’ name="lastname’” /> Last name: <input typ </form> How the HTML code above looks in a browser: Top of Form First name: astname|____| The default width of a text field is 20 characters. a The following is the list of attributes for <input type="text’> tag. name: The name attribute is required for identifying the input field name, %* value : The value attribute specifies default text that appears in the field when the form is loaded. When you reset a form, it returns to this value. size: By default, browsers display ¢ text-entry box that is 20 characters wide, but you can change the number of characters using the size attribute. + maxlength: By default, users can type an unlimited number of characters in a text field regardless of its size. You can seta maximum character limit using the maxlength attribute if the forms processing program you are using requires it. Example: <input type="text” name="username'’ size="8" maxlength="8"> Practice 2.4 1. Createa web pace that has a form for course registration; use your tegistration slip as a guide. 2. Createa web page that has a form for signing in to an email Password A password field works just like a text entry field, except the characters are obscured from view using asterisk (*) or bullet (-) characters, or another character determined by the browser. <input type="password!" /> defines 2 password field <form> Password: <input type="password" name="pwd"> </form> How the HTML code above looks in a browser: Top of Form a Password: Bottom of Form Text Area At times, you may want your users to be able enter multiple line of text. For these instances, use the <textarea> element that is replaced by a multiline, scrollable text entry box when displayed by the browser. Example: <textarea name="comment’> Tell us what you fee! about our tutorial with 50 words or less. </textarea> Text Area attributes: Text area has the following attributes 4k name — name is used to identify the text erea fows -specifies the number of lines of text area should display. Scrollbars will be provided if the user types more text than fits in the allotted space cols - specifies the width of the text area measured in number of characters. Example’ <textarea name="comment" rows="5" cols="100"> Tell us what you feel about our tutorial with 50 words or less. </textarea> a Form Elements x € > SG Ai LD files//CyUsers/User/Desktop/for i? H @® = First name Last name: Tellus what you feel about our tutorial with 50 words or less. Fig Text field and text area Using Buttons, Checkboxes and Selection Lists Radio Buttons Radio buttons are a popular form of interaction. You may have seen them on quizzes, questionnaires, and other web sites that give the user a multiple choice question. Below are a couple attributes you should know that relate to the radio button. 4 value: specifies what will be sent if the user chooses this radio button. Only one value will be sent for a given group of radio buttons + name: defines which set of radio buttons that it is a part of. <input type="radio'> defines a radio button. Radio buttons let a user select ONLY ONE of a limited number of choices: <fom> <input type="radio’ name="sex" value="male" /> Male<br /> <input type="radio’ name="sex" value="female’ / Female </form> as | * Bottom of Form * Bottom of Form Radio button attributes are: * ~name sets name of the radio button * value: sets the value of the radio button. This is the data sent to server when ‘the user submits the form. checked: sets whether the radio button is checked by default or not. It accepts the value checked Example: <form method="post” action="register php"> <input type="radio" name="sex" value="male’ checked="checked"> Male <br> <input type="radio" name="sex" value="female"> Female </form> This produces the following output ® Male Female Practice 2.5 1. Createa web page that let students choose their department; use the list of department in your faculty as a guideline. 2. Use a checkbox to create a web page that will enable students to select a subjects they enjoy most (more than one selection is possible). Checkboxes Check boxes allow for multiple items to be selected for a certain group of choices. The check box’s name and value ettributes behave the same as a radio button. a L_ <input type="checkbox" /> defines a checkbox. Checkboxes let a user select ONE or MORE options of a limited number of choices. <form> <input type="checkbox" name="vehicle" value="Bike" /> | have a bike<br /> <input type="checkbox" name="vehicle" value="Car" /> | have a car </form> Checkbox attributes are: * name sets name of the checkbox %* value: sets the value of the checkbox. This is the data sent to server when the user submits the form. «checked: sets whether the checkbox is checked by default or not. It accepts the value checked, Example: What type of food do you like? <ul> <li><input type="checkbox" name="genre" value=" spaghetti " checked='checked"> Spaghetti</li> <li><input type="checkbox" name="genre” value="pizza’ checked="checked’> Pizza/li> <li><input type="checkbox" name="genre" value="sandwich’>Sandwich </li> <li><input type="checkbox" name="genre" value="Burger’»Burger</li> </ul> This produces the following output + % Spaghetti © 4 Pizza © FD Sandwich * OBurger Selection lists a | L_ Drop down menus are created with the <select> and <option> tags. <select> is the list itself and each <option> is an available choice for the user. Educational level: <br> <select nam legree"> <option>Choose One</option> <optionsSome High Schools/option> <option>High School Degree</option> <option>Some College</option> <option>Bachelor’s Degree</option> <option>Doctorate</option> </select> This produces the following output jFevcercnal i High Schov! Degree —_ (cies y) Seen Ooowe Attributes of select Attribute Value Description Disabled disabled Specifies that a drop-down list should be disabled Multiple multiple Specifies that multiple options can be selected Name Text ‘Specifies the name of a drop-down list Size number Specifies the number of visible options ina drop-down list a</div><section class="_1A5SlX"><div class="_13Fwm2"><div class="J21xEw" data-e2e="recommender-list"><h2 class="_2zE7Q5" data-e2e="list-title">You might also like</h2><ul class="_1LVQoI" data-e2e="list-content-wrapper"><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/865431611/Word2pdf-Chapter-2-Basics-of-HTML-1743060597810" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Word2pdf_Chapter 2- Basics of HTML_1743060597810</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/865431611/149x198/0d22041644/1747899819?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/865431611/298x396/2c34427187/1747899819?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Word2pdf_Chapter 2- Basics of HTML_1743060597810</div><div class="_3UuYwh zs8qzW">62 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/612852738/Ip-Chapter-2-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Ip Chapter 2 HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/612852738/149x198/e45f4f163f/1670407032?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/612852738/298x396/fd4642b0b3/1670407032?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Ip Chapter 2 HTML</div><div class="_3UuYwh zs8qzW">57 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/618681579/Ch2-HTML-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Ch2 - HTML-1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/618681579/149x198/ab515f3d80/1673259160?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/618681579/298x396/40ee1c731b/1673259160?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Ch2 - HTML-1</div><div class="_3UuYwh zs8qzW">120 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/761774723/2-Unit-I-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-I - HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/761774723/149x198/eb9a0bfef3/1724393526?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/761774723/298x396/b721d6cb28/1724393526?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit-I - HTML</div><div class="_3UuYwh zs8qzW">65 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/796212600/HTML-tags" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML Tags</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/796212600/149x198/bb95c3a371/1732445309?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/796212600/298x396/60aef8c69f/1732445309?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML Tags</div><div class="_3UuYwh zs8qzW">94 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/726221698/Htlm-Intro" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTLM Intro</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/726221698/149x198/7b940e3a01/1713963014?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/726221698/298x396/a44429189d/1713963014?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTLM Intro</div><div class="_3UuYwh zs8qzW">28 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/323130307/CreatingWebPages-Part1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CreatingWebPages Part1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/323130307/149x198/8ae07405be/1473151814?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/323130307/298x396/63ce105f7a/1473151814?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">CreatingWebPages Part1</div><div class="_3UuYwh zs8qzW">19 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/516378501/HTML-Basics" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML Basics: This Work Is Licensed Under A</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/516378501/149x198/fe7c3e60ae/1710568026?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/516378501/298x396/09cdcec56b/1710568026?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML Basics: This Work Is Licensed Under A</div><div class="_3UuYwh zs8qzW">83 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/414855767/Lesson1-Intro-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Lesson1-Intro To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/414855767/149x198/4c6e34ce87/1561721348?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/414855767/298x396/91cc5fbbc3/1561721348?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Lesson1-Intro To HTML</div><div class="_3UuYwh zs8qzW">57 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/867033023/Chapter-4-Introduction-to-Hyper-Text-Markup-Language-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Chapter-4 Introduction to Hyper Text Markup Language (HTML)</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/867033023/149x198/79f438928d/1748207816?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/867033023/298x396/718f5d5603/1748207816?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Chapter-4 Introduction to Hyper Text Markup Language (HTML)</div><div class="_3UuYwh zs8qzW">121 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/630768437/HTML-SYlABUS" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML SYlABUS</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/630768437/149x198/4c92a9500a/1710526511?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/630768437/298x396/482ea6b126/1710526511?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML SYlABUS</div><div class="_3UuYwh zs8qzW">50 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/632632390/HTML-NOTES" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML Notes</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/632632390/149x198/bff6c40da5/1710545171?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/632632390/298x396/9cf1818cef/1710545171?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML Notes</div><div class="_3UuYwh zs8qzW">29 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/540319766/HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/540319766/149x198/83239562fd/1637142008?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/540319766/298x396/b8eb5858b4/1637142008?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/748768064/Introduction-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/748768064/149x198/93c9c29b56/1720431999?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/748768064/298x396/053915333d/1720431999?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To HTML</div><div class="_3UuYwh zs8qzW">106 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/849218232/MM211-Lecture-03-HTML-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">MM211 - Lecture 03 HTML 1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/849218232/149x198/e734c238cf/1744485036?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/849218232/298x396/49a9042e43/1744485036?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">MM211 - Lecture 03 HTML 1</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/549713890/ilovepdf-merged" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Ilovepdf Merged</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/549713890/149x198/82ef838938/1710576673?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/549713890/298x396/0469c1b788/1710576673?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Ilovepdf Merged</div><div class="_3UuYwh zs8qzW">304 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/747471671/HTML5-BEGINER-TO-WARRIOR" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML5 Beginer To Warrior</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/747471671/149x198/014b8e0fc3/1719977376?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/747471671/298x396/8f1142fd4e/1719977376?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML5 Beginer To Warrior</div><div class="_3UuYwh zs8qzW">27 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/836016254/HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/836016254/149x198/bb6782428d/1741252594?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/836016254/298x396/0ff2877888/1741252594?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML</div><div class="_3UuYwh zs8qzW">22 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/85474256/Part-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Modern Web Browser: Mozilla Firefox 3+ Google Chrome Apple Safari 4+ Opera 10+ Microsoft Internet Explorer 8</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/85474256/149x198/ed8ed88b2d/1331818959?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/85474256/298x396/325448619b/1331818959?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Modern Web Browser: Mozilla Firefox 3+ Google Chrome Apple Safari 4+ Opera 10+ Microsoft Internet Explorer 8</div><div class="_3UuYwh zs8qzW">16 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/825752427/Ch-4-HTML-CSS" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Ch-4-HTML_CSS</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/825752427/149x198/dbdd422186/1739077818?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/825752427/298x396/bd00a0ccbb/1739077818?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Ch-4-HTML_CSS</div><div class="_3UuYwh zs8qzW">39 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/797743300/HTML-Notes" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML Notes</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/797743300/149x198/95d8203d0b/1732737136?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/797743300/298x396/f6957e71c1/1732737136?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML Notes</div><div class="_3UuYwh zs8qzW">22 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/791785305/FSWD-UNIT-1-AIML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Fswd@unit 1@aiml</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/791785305/149x198/6c816e7ec8/1731506341?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/791785305/298x396/b97580ac94/1731506341?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Fswd@unit 1@aiml</div><div class="_3UuYwh zs8qzW">56 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/406832943/html-pdf" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML PDF</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/406832943/149x198/aa02739d0e/1555694070?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/406832943/298x396/91b296e70a/1555694070?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML PDF</div><div class="_3UuYwh zs8qzW">50 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/163190218/12431-introduction-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/163190218/149x198/5c03bbd7b8/1377528712?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/163190218/298x396/fcf06b22c7/1377528712?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To HTML</div><div class="_3UuYwh zs8qzW">13 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/799813491/a1-3-0-0-INTRODUCTION-TO-WEBSITE-DESIGNING" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">a1.3.0.0 INTRODUCTION TO WEBSITE DESIGNING</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/799813491/149x198/c85b108267/1733169397?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/799813491/298x396/4b89321d10/1733169397?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">a1.3.0.0 INTRODUCTION TO WEBSITE DESIGNING</div><div class="_3UuYwh zs8qzW">25 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/496623513/Workshop-1-Guide-2020" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Workshop 1 Guide - 2020</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/496623513/149x198/6ec0544d08/1710539890?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/496623513/298x396/44c7673c5d/1710539890?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Workshop 1 Guide - 2020</div><div class="_3UuYwh zs8qzW">17 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/688307317/Chapter-1-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Chapter 1 - HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/688307317/149x198/b2546e7274/1701264206?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/688307317/298x396/7f26a59fcd/1701264206?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Chapter 1 - HTML</div><div class="_3UuYwh zs8qzW">142 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/875850179/Introduction-to-HTML-for-Beginners-Covers-HTML5-CSS3-Beginner-s-Guide-1ed" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction to HTML for Beginners_ , Covers HTML5, CSS3, Beginner_s Guide, 1ed</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/875850179/149x198/bf69a04cb4/1749882318?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/875850179/298x396/256f51be24/1749882318?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction to HTML for Beginners_ , Covers HTML5, CSS3, Beginner_s Guide, 1ed</div><div class="_3UuYwh zs8qzW">80 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/33363122/HTML-Tutorial" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML Tutorial</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/33363122/149x198/5c37c2b20d/1316052465?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/33363122/298x396/f810fb239d/1316052465?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML Tutorial</div><div class="_3UuYwh zs8qzW">79 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/814275823/Merged-20241228-072" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Merged_20241228_072</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/814275823/149x198/43b0ed9e21/1736563486?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/814275823/298x396/787066f35c/1736563486?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Merged_20241228_072</div><div class="_3UuYwh zs8qzW">84 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/630356000/Basic-Web-Pages-Tutorial-HTML-CSS-Is-Hard" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Basic Web Pages Tutorial - HTML &amp; CSS Is Hard</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/630356000/149x198/718c1098d1/1710564035?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/630356000/298x396/f910da5532/1710564035?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Basic Web Pages Tutorial - HTML &amp; CSS Is Hard</div><div class="_3UuYwh zs8qzW">18 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/819520572/Chapter-10-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Chapter 10 - HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/819520572/149x198/7ae12cbafe/1737697219?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/819520572/298x396/a905c1c538/1737697219?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Chapter 10 - HTML</div><div class="_3UuYwh zs8qzW">98 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/466956342/unit-2-web-dev-doc-docx" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 2 Web Dev</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/466956342/149x198/86e5d8bc38/1593113517?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/466956342/298x396/023435ef64/1593113517?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit 2 Web Dev</div><div class="_3UuYwh zs8qzW">135 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/871247242/Introduction-to-Website-Design-and-Development" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction to Website Design and Development</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/871247242/149x198/efdffd8b1e/1748963433?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/871247242/298x396/45a2e9f488/1748963433?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction to Website Design and Development</div><div class="_3UuYwh zs8qzW">17 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/752766562/Adobe-Scan-Jul-01-2023" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Adobe Scan Jul 01, 2023</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/752766562/149x198/3c2fd78338/1721750137?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/752766562/298x396/02dc32353d/1721750137?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Adobe Scan Jul 01, 2023</div><div class="_3UuYwh zs8qzW">9 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/699070808/Part-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Part 2</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/699070808/149x198/226706a42a/1710530082?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/699070808/298x396/2ef7de70af/1710530082?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Part 2</div><div class="_3UuYwh zs8qzW">17 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/638017701/priya-File" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Priya File</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/638017701/149x198/e704257b76/1710564097?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/638017701/298x396/77d936f4b4/1710564097?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Priya File</div><div class="_3UuYwh zs8qzW">90 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/838234857/Week-5-Web-Designing" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Week 5 - Web Designing</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/838234857/149x198/a91b49e27e/1741749595?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/838234857/298x396/fbdef9022d/1741749595?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Week 5 - Web Designing</div><div class="_3UuYwh zs8qzW">40 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/259041113/Introduction-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/259041113/149x198/b3ffb45ff9/1426606365?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/259041113/298x396/397a3d45ad/1426606365?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To HTML</div><div class="_3UuYwh zs8qzW">36 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/111678810/HTML-Intro" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To HTML: Will Kurlinkus</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/111678810/149x198/635159202c/1380157732?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/111678810/298x396/34ab2bb2af/1380157732?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To HTML: Will Kurlinkus</div><div class="_3UuYwh zs8qzW">9 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/849589065/Introduction-to-HTML-CSC-221" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction to HTML CSC 221</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/849589065/149x198/276354c089/1744591701?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/849589065/298x396/77d04c6d27/1744591701?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction to HTML CSC 221</div><div class="_3UuYwh zs8qzW">23 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/730481125/Lecture-2-IntroHTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Lecture 2 IntroHTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/730481125/149x198/c7e54517f7/1715160181?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/730481125/298x396/89858e67f9/1715160181?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Lecture 2 IntroHTML</div><div class="_3UuYwh zs8qzW">66 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/788912559/Introduction-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/788912559/149x198/b15e082c2a/1730923284?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/788912559/298x396/59f3c79538/1730923284?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To HTML</div><div class="_3UuYwh zs8qzW">20 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/736212372/HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML </span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/736212372/149x198/15e5078cde/1716718115?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/736212372/298x396/7e5730a0d6/1716718115?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML </div><div class="_3UuYwh zs8qzW">50 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/445455810/WEB-Development-pdf" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">WEB Development PDF</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/445455810/149x198/de59a69271/1580786835?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/445455810/298x396/c1282a4591/1580786835?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">WEB Development PDF</div><div class="_3UuYwh zs8qzW">132 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/823284687/introdution-to-html" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">introdution-to-html</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/823284687/149x198/3d8c9031b7/1738565834?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/823284687/298x396/509e9d8243/1738565834?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">introdution-to-html</div><div class="_3UuYwh zs8qzW">45 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/833377474/html" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">html</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/833377474/149x198/7710aeb529/1740657575?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/833377474/298x396/71d6d57af0/1740657575?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">html</div><div class="_3UuYwh zs8qzW">47 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/473332880/Unit-2-pdf" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 2 Introduction To HTML: Structure</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/473332880/149x198/5d85c02732/1598152184?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/473332880/298x396/8fb9637091/1598152184?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit 2 Introduction To HTML: Structure</div><div class="_3UuYwh zs8qzW">21 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/820706576/yahxee-1st-class" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">yahxee 1st class</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/820706576/149x198/8707501787/1737990861?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/820706576/298x396/607bad541c/1737990861?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">yahxee 1st class</div><div class="_3UuYwh zs8qzW">27 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/837643866/HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/837643866/149x198/699bbff29d/1741631325?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/837643866/298x396/e9d547604e/1741631325?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML</div><div class="_3UuYwh zs8qzW">100 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/554532436/A-Beginner-html" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Lesson 1 Learning The Basics: A Beginner&#x27;s Tutorial To HTML Demo</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/554532436/149x198/eff0356aff/1710590564?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/554532436/298x396/31be106571/1710590564?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Lesson 1 Learning The Basics: A Beginner&#x27;s Tutorial To HTML Demo</div><div class="_3UuYwh zs8qzW">33 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/789993960/WP-Chapter-two" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">WP - Chapter Two</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/789993960/149x198/d958661fbe/1731154972?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/789993960/298x396/fd14dab2e2/1731154972?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">WP - Chapter Two</div><div class="_3UuYwh zs8qzW">91 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/578913174/Practical-File-html" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Practical File HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/578913174/149x198/3ad0beac56/1710588785?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/578913174/298x396/1fa72c676b/1710588785?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Practical File HTML</div><div class="_3UuYwh zs8qzW">90 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/295951639/Grade-8-Web-Designing" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Grade 8 - Web Designing</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/295951639/149x198/fa62ad0702/1704639643?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/295951639/298x396/00ba410437/1704639643?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2x9K4q"><span class="Icon-module_wrapper_LUeQrI _3BAw53"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.18 14.055a2 2 0 0 1-1.857 1.257H4.498a3.11 3.11 0 0 1-1.39-.328A3.812 3.812 0 0 1 1 11.574V5.312h3.382l2.103-3.206a2 2 0 0 1 3.203-.52l.433.433A3 3 0 0 1 11 4.14v1.172h2a3 3 0 0 1 3 3v.037c0 .763-.146 1.52-.43 2.228l-1.39 3.478Zm-9.682-.743h7.148a1 1 0 0 0 .928-.629l1.14-2.848A4 4 0 0 0 14 8.349v-.037a1 1 0 0 0-1-1H9V4.14a1 1 0 0 0-.293-.707L8.274 3 6.17 6.206a2 2 0 0 1-1.789 1.106H3v4.262c0 .686.388 1.314 1.002 1.62.154.078.324.118.496.118Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></span></span><div>100% (1)</div></div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Grade 8 - Web Designing</div><div class="_3UuYwh zs8qzW">18 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/690499781/Introdution-to-HTML" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introdution To HTML</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/690499781/149x198/85dd9645ca/1701940397?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/690499781/298x396/fc258c96af/1701940397?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introdution To HTML</div><div class="_3UuYwh zs8qzW">36 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/670133009/HTML-BASIC-CONCEPTS-OF-WEB-DESIGN" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">(HTML) Basic Concepts of Web Design</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/670133009/149x198/a92cf5739a/1710563194?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/670133009/298x396/8e085c60fa/1710563194?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">(HTML) Basic Concepts of Web Design</div><div class="_3UuYwh zs8qzW">10 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/798980212/Coding-Skills" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Coding Skills</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/798980212/149x198/0bca61f902/1733001799?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/798980212/298x396/24bcd2b2a8/1733001799?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Coding Skills</div><div class="_3UuYwh zs8qzW">133 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/865545402/DCCN-PROJECT" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">DCCN PROJECT</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/865545402/149x198/4313599376/1747927200?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/865545402/298x396/5876fef933/1747927200?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">DCCN PROJECT</div><div class="_3UuYwh zs8qzW">3 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/865433362/DCCN-CH-6" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">DCCN CH-6</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/865433362/149x198/ebb3b0a5c9/1747900137?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/865433362/298x396/04cbd61a01/1747900137?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">DCCN CH-6</div><div class="_3UuYwh zs8qzW">22 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/865431274/DCCN-CH-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">DCCN CH-2</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/865431274/149x198/96335ba3f4/1747899748?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/865431274/298x396/0c1ca6478c/1747899748?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">DCCN CH-2</div><div class="_3UuYwh zs8qzW">45 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/865427044/DCCN-CH-7-Security" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">DCCN CH-7 Security</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/865427044/149x198/75d7ee0c0a/1747898904?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/865427044/298x396/1a9ee425f0/1747898904?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">DCCN CH-7 Security</div><div class="_3UuYwh zs8qzW">56 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/865423224/1743066718611" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">1743066718611</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/865423224/149x198/9a07120f1e/1747899115?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/865423224/298x396/62c469bdbb/1747899115?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">1743066718611</div><div class="_3UuYwh zs8qzW">101 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/865426153/Lecture-3-Data-Structures-2-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Lecture 3 - Data Structures (2)(1)</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/865426153/149x198/f00eb7e7b6/1747898761?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/865426153/298x396/e674731c27/1747898761?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Lecture 3 - Data Structures (2)(1)</div><div class="_3UuYwh zs8qzW">29 pages</div></div></div></div></li></ul></div></div></section></div><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_hide_below_l_7M0-Xa GridColumn-module_extended_xl4_2_1yIW6E GridColumn-module_extended_xl3_2_mt-u-v GridColumn-module_extended_xl2_3_m7b4Yd GridColumn-module_extended_xl_3_-M4jBh GridColumn-module_extended_l_3_BRh6gm GridColumn-module_extended_m_3_WS7F6q GridColumn-module_extended_s_3_80JJD4 GridColumn-module_extended_xs_3_1WuHyd GridColumn-module_extended_xxs_3_glgZEz"></div></div><div class="GridRow-module_wrapper_Uub42x GridRow-module_extended_Bvagp4"><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_extended_xl4_12_UeyicL GridColumn-module_extended_xl3_12_TsrxQ- GridColumn-module_extended_xl2_12_ceos-a GridColumn-module_extended_xl_12_7vx87Y GridColumn-module_extended_l_12_gCRsqg GridColumn-module_extended_m_8_bDZzOd GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII"></div></div></div><footer class="Footer-module_wrapper__7jj0T _1ZsTbw" id="global_footer"><h2 class="visually_hidden">Footer menu</h2><div class="GridContainer-module_wrapper__7Rx6L GridContainer-module_extended__fiqt9"><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="BackToTopLink-module_wrapper__HTQnD visually_hidden"><a data-e2e="back-to-top-link" href="#global_header" class="BackToTopLink-module_link__EOy-v">Back to top</a></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_horizontalColumn__vuSBJ"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">About</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="About Scribd, Inc." class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">About Scribd, Inc.</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: Ebooks &amp; Audiobooks" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: Ebooks &amp; Audiobooks</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Join our team!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Join our team!</span></span></a></li><li><a aria-disabled="false" aria-label="Contact us" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Contact us</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Support</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Help / FAQ" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/en-us"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Help / FAQ</span></span></a></li><li><a aria-disabled="false" aria-label="Accessibility" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/en-us/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Accessibility</span></span></a></li><li><a aria-disabled="false" aria-label="Purchase help" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Purchase help</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Legal</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Terms" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Terms</span></span></a></li><li><a aria-disabled="false" aria-label="Privacy" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Privacy</span></span></a></li><li><a aria-disabled="false" aria-label="Copyright" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Copyright</span></span></a></li><li><a aria-disabled="false" aria-label="Do not sell or share my personal information" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Do not sell or share my personal information</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Social</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd on Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Get our free apps</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Download on the App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&amp;pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Download on the App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Get it on Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Get it on Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">About</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="About Scribd, Inc." class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">About Scribd, Inc.</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: Ebooks &amp; Audiobooks" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: Ebooks &amp; Audiobooks</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Join our team!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Join our team!</span></span></a></li><li><a aria-disabled="false" aria-label="Contact us" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Contact us</span></span></a></li></ul></div><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Legal</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Terms" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Terms</span></span></a></li><li><a aria-disabled="false" aria-label="Privacy" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Privacy</span></span></a></li><li><a aria-disabled="false" aria-label="Copyright" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Copyright</span></span></a></li><li><a aria-disabled="false" aria-label="Do not sell or share my personal information" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Do not sell or share my personal information</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Support</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Help / FAQ" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/en-us"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Help / FAQ</span></span></a></li><li><a aria-disabled="false" aria-label="Accessibility" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/en-us/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Accessibility</span></span></a></li><li><a aria-disabled="false" aria-label="Purchase help" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Purchase help</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Social</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd on Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_m__zwIrv GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Get our free apps</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Download on the App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&amp;pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Download on the App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Get it on Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Get it on Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_horizontalDivider__Z6XJu"></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_7__-9AEI GridColumn-module_extended_xl3_7__B6ct2 GridColumn-module_extended_xl2_7__Nztja GridColumn-module_extended_xl_7__OFVFv GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><ul class="ContentTypeColumn-module_contentTypesList__WIKOq"><li><a aria-disabled="false" aria-label="Documents" class="TextButton-module_wrapper__ZwW-w ContentTypeColumn-module_contentTypeLink__K3M9d" data-e2e="footer_content_type_column_documents_link" href="/https/www.scribd.com/docs"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Documents</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_l__7M0-X GridColumn-module_extended_xl4_5__PuEUy GridColumn-module_extended_xl3_5__aTZFP GridColumn-module_extended_xl2_5__UvHIq GridColumn-module_extended_xl_5__qmwN8 GridColumn-module_extended_l_5__VLQLS GridColumn-module_extended_m_5__HSrx- GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomRightContainer__5MVkq"><div class="ScribdFooterLanguageMenu-module_wrapper__6nJjp"><div class="ScribdFooterLanguageMenu-module_languageCopy__IvHMZ">Language<!-- -->:</div><div class="DropdownMenu-module_wrapper_-3wi4F"><button aria-disabled="false" class="ButtonCore-module_wrapper_MkTb9s TextButton-module_wrapper_ZwW-wM TextButton-module_default_ekglbr DropdownTrigger-module_wrapper_-Xf-At ScribdFooterLanguageMenu-module_currentLanguage__-ZykZ" data-e2e="footer_current_language_button" id="" aria-haspopup="menu" aria-expanded="false" data-state="closed" type="button"><span class="ButtonCore-module_content_8zyAJv"><span class="ButtonCore-module_children_8a9B71">English<span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></span></span></button></div></div><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Copyright &copy; 2025 Scribd Inc.</span></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_l__7M0-X GridColumn-module_standard_xl_12__x8-4j GridColumn-module_standard_l_12__ndEV7 GridColumn-module_standard_m_8__JIpAV GridColumn-module_standard_s_4__Yz20V GridColumn-module_standard_xs_4__QcV7o GridColumn-module_standard_xxs_4__7w6eo"><div class="Footer-module_copyrightAwareness__znGWg">We take content rights seriously. <a href=https://support.scribd.com/hc/en-us/articles/210129026-Frequently-Asked-Questions-about-Copyrights-and-the-DMCA>Learn more</a> in our FAQs or <a href=https://support.scribd.com/hc/en-us/articles/210129146-REPORT-COPYRIGHT-INFRINGEMENTS-AND-ABUSE-HERE>report infringement here</a>.</div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_standard_xl_12__x8-4j GridColumn-module_standard_l_12__ndEV7 GridColumn-module_standard_m_8__JIpAV GridColumn-module_standard_s_4__Yz20V GridColumn-module_standard_xs_4__QcV7o GridColumn-module_standard_xxs_4__7w6eo"><div class="Footer-module_copyrightAwareness__znGWg">We take content rights seriously. <a href=https://support.scribd.com/hc/en-us/articles/210129026-Frequently-Asked-Questions-about-Copyrights-and-the-DMCA>Learn more</a> in our FAQs or <a href=https://support.scribd.com/hc/en-us/articles/210129146-REPORT-COPYRIGHT-INFRINGEMENTS-AND-ABUSE-HERE>report infringement here</a>.</div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="ScribdFooterLanguageMenu-module_wrapper__6nJjp"><div class="ScribdFooterLanguageMenu-module_languageCopy__IvHMZ">Language<!-- -->:</div><div class="DropdownMenu-module_wrapper_-3wi4F"><button aria-disabled="false" class="ButtonCore-module_wrapper_MkTb9s TextButton-module_wrapper_ZwW-wM TextButton-module_default_ekglbr DropdownTrigger-module_wrapper_-Xf-At ScribdFooterLanguageMenu-module_currentLanguage__-ZykZ" data-e2e="footer_current_language_button" id="" aria-haspopup="menu" aria-expanded="false" data-state="closed" type="button"><span class="ButtonCore-module_content_8zyAJv"><span class="ButtonCore-module_children_8a9B71">English<span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></span></span></button></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Copyright &copy; 2025 Scribd Inc.</span></div></div></div></div></footer></div></div><script type="speculationrules">{"prefetch":[{"where":{"href_matches":["/","/doc/*","/docs/*","/document/*","/presentation/*","/what-is-scribd"]},"eagerness":"moderate"}]}</script></div> <script type="application/json" data-hypernova-key="doc_page" data-hypernova-id="becc0679-3637-4038-a3af-b8c397e4e79e"><!--{"assetEnvironment":"production","bodyProps":{"admin_panel_props":null,"breadcrumbs":[],"sharing_buttons_props":{"description":" This is about basics of html file for university studebts","id":865428175,"message":null,"private":false,"thumbnailUrl":"https://imgv2-1-f.scribdassets.com/img/document/865428175/original/da1ed2838a/1?v=1","title":"word2pdf_Chapter 2- Basics of HTML_1743060597810","twitterHashtag":null,"url":"https://www.scribd.com/document/865428175/word2pdf-Chapter-2-Basics-of-HTML-1743060597810"},"show_bot_text":true,"bot_text":"###BOT_TEXT###","view_restricted_cta_test_enabled":false},"currentPage":{"isHamburgerMenuOpen":false,"isMegamenuTopBarVisible":true,"isStatsigEnabled":true,"navigationCategories":{"academic":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"foreign-language-studies","name":"Foreign Language Studies","url":"https://www.scribd.com/docs/Foreign-Language-Studies","children":[{"dataName":"chinese","name":"Chinese","url":"https://www.scribd.com/docs/Foreign-Language-Studies/Chinese"},{"dataName":"esl","name":"ESL","url":"https://www.scribd.com/docs/Foreign-Language-Studies/ESL"}]},{"dataName":"science-mathematics","name":"Science &amp; Mathematics","url":"https://www.scribd.com/docs/Science-Mathematics","children":[{"dataName":"astronomy-space-sciences","name":"Astronomy &amp; Space Sciences","url":"https://www.scribd.com/docs/Science-Mathematics/Astronomy-Space-Sciences"},{"dataName":"biology","name":"Biology","url":"https://www.scribd.com/docs/Science-Mathematics/Biology"}]},{"dataName":"study-aids-test-prep","name":"Study Aids &amp; Test Prep","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep","children":[{"dataName":"book-notes","name":"Book Notes","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep/Book-Notes"},{"dataName":"college-entrance-exams","name":"College Entrance Exams","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep/College-Entrance-Exams"}]},{"dataName":"teaching-methods-materials","name":"Teaching Methods &amp; Materials","url":"https://www.scribd.com/docs/Teaching-Methods-Materials","children":[{"dataName":"early-childhood-education","name":"Early Childhood Education","url":"https://www.scribd.com/docs/Teaching-Methods-Materials/Early-Childhood-Education"},{"dataName":"education-philosophy-theory","name":"Education Philosophy &amp; Theory","url":"https://www.scribd.com/docs/Teaching-Methods-Materials/Education-Philosophy-Theory"}]}]},"professional":{"totalCategoryCount":21,"categoryLinks":[{"dataName":"business","name":"Business","url":"https://www.scribd.com/docs/Business","children":[{"dataName":"business-analytics","name":"Business Analytics","url":"https://www.scribd.com/docs/Business/Business-Analytics"},{"dataName":"human-resources-personnel-management","name":"Human Resources &amp; Personnel Management","url":"https://www.scribd.com/docs/Business/Human-Resources-Personnel-Management"}]},{"dataName":"career-growth","name":"Career &amp; Growth","url":"https://www.scribd.com/docs/Career-Growth","children":[{"dataName":"careers","name":"Careers","url":"https://www.scribd.com/docs/Career-Growth/Careers"},{"dataName":"job-hunting","name":"Job Hunting","url":"https://www.scribd.com/docs/Career-Growth/Job-Hunting"}]},{"dataName":"computers","name":"Computers","url":"https://www.scribd.com/docs/Computers","children":[{"dataName":"applications-software","name":"Applications &amp; Software","url":"https://www.scribd.com/docs/Computers/Applications-Software"},{"dataName":"cad-cam","name":"CAD-CAM","url":"https://www.scribd.com/docs/Computers/CAD-CAM"}]},{"dataName":"finance-money-management","name":"Finance &amp; Money Management","url":"https://www.scribd.com/docs/Finance-Money-Management","children":[{"dataName":"accounting-bookkeeping","name":"Accounting &amp; Bookkeeping","url":"https://www.scribd.com/docs/Finance-Money-Management/Accounting-Bookkeeping"},{"dataName":"auditing","name":"Auditing","url":"https://www.scribd.com/docs/Finance-Money-Management/Auditing"}]},{"dataName":"law","name":"Law","url":"https://www.scribd.com/docs/Law","children":[{"dataName":"business-financial","name":"Business &amp; Financial","url":"https://www.scribd.com/docs/Law/Business-Financial"},{"dataName":"contracts-agreements","name":"Contracts &amp; Agreements","url":"https://www.scribd.com/docs/Law/Contracts-Agreements"}]},{"dataName":"politics","name":"Politics","url":"https://www.scribd.com/docs/Politics","children":[{"dataName":"american-government","name":"American Government","url":"https://www.scribd.com/docs/Politics/American-Government"},{"dataName":"international-relations","name":"International Relations","url":"https://www.scribd.com/docs/Politics/International-Relations"}]},{"dataName":"technology-engineering","name":"Technology &amp; Engineering","url":"https://www.scribd.com/docs/Technology-Engineering","children":[{"dataName":"automotive","name":"Automotive","url":"https://www.scribd.com/docs/Technology-Engineering/Automotive"},{"dataName":"aviation-aeronautics","name":"Aviation &amp; Aeronautics","url":"https://www.scribd.com/docs/Technology-Engineering/Aviation-Aeronautics"}]}]},"culture":{"totalCategoryCount":19,"categoryLinks":[{"dataName":"art","name":"Art","url":"https://www.scribd.com/docs/Art","children":[{"dataName":"antiques-collectibles","name":"Antiques &amp; Collectibles","url":"https://www.scribd.com/docs/Art/Antiques-Collectibles"},{"dataName":"architecture","name":"Architecture","url":"https://www.scribd.com/docs/Art/Architecture"}]},{"dataName":"biography-memoir","name":"Biography &amp; Memoir","url":"https://www.scribd.com/docs/Biography-Memoir","children":[{"dataName":"artists-and-musicians","name":"Artists and Musicians","url":"https://www.scribd.com/docs/Biography-Memoir/Artists-and-Musicians"},{"dataName":"entertainers-and-the-rich-famous","name":"Entertainers and the Rich &amp; Famous","url":"https://www.scribd.com/docs/Biography-Memoir/Entertainers-and-the-Rich-Famous"}]},{"dataName":"comics-graphic-novels","name":"Comics &amp; Graphic Novels","url":"https://www.scribd.com/docs/Comics-Graphic-Novels"},{"dataName":"history","name":"History","url":"https://www.scribd.com/docs/History","children":[{"dataName":"ancient","name":"Ancient","url":"https://www.scribd.com/docs/History/Ancient"},{"dataName":"modern","name":"Modern","url":"https://www.scribd.com/docs/History/Modern"}]},{"dataName":"philosophy","name":"Philosophy","url":"https://www.scribd.com/docs/Philosophy"},{"dataName":"language-arts-discipline","name":"Language Arts &amp; Discipline","url":"https://www.scribd.com/docs/Language-Arts-Discipline","children":[{"dataName":"composition-creative-writing","name":"Composition &amp; Creative Writing","url":"https://www.scribd.com/docs/Language-Arts-Discipline/Composition-Creative-Writing"},{"dataName":"linguistics","name":"Linguistics","url":"https://www.scribd.com/docs/Language-Arts-Discipline/Linguistics"}]},{"dataName":"literary-criticism","name":"Literary Criticism","url":"https://www.scribd.com/docs/Literary-Criticism"},{"dataName":"social-science","name":"Social Science","url":"https://www.scribd.com/docs/Social-Science","children":[{"dataName":"anthropology","name":"Anthropology","url":"https://www.scribd.com/docs/Social-Science/Anthropology"},{"dataName":"archaeology","name":"Archaeology","url":"https://www.scribd.com/docs/Social-Science/Archaeology"}]},{"dataName":"true-crime","name":"True Crime","url":"https://www.scribd.com/docs/True-Crime"}]},"hobbies_and_crafts":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"cooking-food-wine","name":"Cooking, Food &amp; Wine","url":"https://www.scribd.com/docs/Cooking-Food-Wine","children":[{"dataName":"beverages","name":"Beverages","url":"https://www.scribd.com/docs/Cooking-Food-Wine/Beverages"},{"dataName":"courses-dishes","name":"Courses &amp; Dishes","url":"https://www.scribd.com/docs/Cooking-Food-Wine/Courses-Dishes"}]},{"dataName":"games-activities","name":"Games &amp; Activities","url":"https://www.scribd.com/docs/Games-Activities","children":[{"dataName":"card-games","name":"Card Games","url":"https://www.scribd.com/docs/Games-Activities/Card-Games"},{"dataName":"fantasy-sports","name":"Fantasy Sports","url":"https://www.scribd.com/docs/Games-Activities/Fantasy-Sports"}]},{"dataName":"home-garden","name":"Home &amp; Garden","url":"https://www.scribd.com/docs/Home-Garden","children":[{"dataName":"crafts-hobbies","name":"Crafts &amp; Hobbies","url":"https://www.scribd.com/docs/Home-Garden/Crafts-Hobbies"},{"dataName":"gardening","name":"Gardening","url":"https://www.scribd.com/docs/Home-Garden/Gardening"}]},{"dataName":"sports-recreation","name":"Sports &amp; Recreation","url":"https://www.scribd.com/docs/Sports-Recreation","children":[{"dataName":"baseball","name":"Baseball","url":"https://www.scribd.com/docs/Sports-Recreation/Baseball"},{"dataName":"basketball","name":"Basketball","url":"https://www.scribd.com/docs/Sports-Recreation/Basketball"}]}]},"personal_growth":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"lifestyle","name":"Lifestyle","url":"https://www.scribd.com/docs/Lifestyle","children":[{"dataName":"beauty-grooming","name":"Beauty &amp; Grooming","url":"https://www.scribd.com/docs/Lifestyle/Beauty-Grooming"},{"dataName":"fashion","name":"Fashion","url":"https://www.scribd.com/docs/Lifestyle/Fashion"}]},{"dataName":"religion-spirituality","name":"Religion &amp; Spirituality","url":"https://www.scribd.com/docs/Religion-Spirituality","children":[{"dataName":"buddhism","name":"Buddhism","url":"https://www.scribd.com/docs/Religion-Spirituality/Buddhism"},{"dataName":"christianity","name":"Christianity","url":"https://www.scribd.com/docs/Religion-Spirituality/Christianity"}]},{"dataName":"self-improvement","name":"Self-Improvement","url":"https://www.scribd.com/docs/Self-Improvement","children":[{"dataName":"addiction","name":"Addiction","url":"https://www.scribd.com/docs/Self-Improvement/Addiction"},{"dataName":"mental-health","name":"Mental Health","url":"https://www.scribd.com/docs/Self-Improvement/Mental-Health"}]},{"dataName":"wellness","name":"Wellness","url":"https://www.scribd.com/docs/Wellness","children":[{"dataName":"body-mind-spirit","name":"Body, Mind, &amp; Spirit","url":"https://www.scribd.com/docs/Wellness/Body-Mind-Spirit"},{"dataName":"diet-nutrition","name":"Diet &amp; Nutrition","url":"https://www.scribd.com/docs/Wellness/Diet-Nutrition"}]}]}},"scribdRebrand":true,"selectedMobileBottomTab":"document","serverTimestamp":"2025-07-06T04:18:54Z","statsigClientApiKey":"client-WIJd796Cwa4NdE0bYoaQFqBHKyK5Pj5Ct7uODQkwhKs","statsigEnvironmentTier":"production"},"enablePseudolocalization":false,"flashes":[],"global":{"client":{"mobile":{"getMobileAppProps":{"androidStoreUrl":"https://play.google.com/store/apps/details?id=com.scribd.app.reader0&amp;hl=en","iosStoreUrl":"https://apps.apple.com/us/app/542557212","app_download_link":"https://www.scribd.com/send_download_link","close_promo_url":"https://www.scribd.com/home/close_promo","doc_id":865428175,"email_address":null,"extra_classes":"app_download_promo","promo_id":null,"twilio_enabled":false,"track_page":"doc_page","success":true,"__locale":"en_US"}}},"config":{"facebook":{"app_id":"136494494209"}},"testAssignments":{"backupPaymentMethodsRollout":null,"docPageMobileFrameworkV1":{"testName":"doc_page_mobile_framework_v1","variant":null},"docPageMobileOutlineThumbnailsV1":{"testName":"doc_page_mobile_outline_thumbnails_v1","variant":"control"},"docPageDesktopOutlineThumbnailsV1":{"testName":"doc_page_desktop_outline_thumbnails_v1","variant":"control"},"docPageAscendeumWrapper":null,"docPageAscendeumMWeb":null,"personalized_archive_offer":"control","ask_ai_download":null},"paths":{"assetPath":"aHR0cHM6Ly9zLWYuc2NyaWJkYXNzZXRzLmNvbS8=\n","actions":{"add_to_library":"L3NhdmVkL2FkZA==\n","archive_plans_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04NjU0\nMjgxNzUmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJkb3dubG9hZCUyMiUyQyUyMmxvZ2dlZF9p\nbiUyMiUzQWZhbHNlJTJDJTIycGxhdGZvcm0lMjIlM0ElMjJ3ZWIlMjIlN0Q=\n","audiobooksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hdWRpb2Jvb2tz\n","bestsellers_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9iZXN0c2VsbGVycw==\n","book_annotations":"L2Jvb2tfYW5ub3RhdGlvbnMvODY1NDI4MTc1\n","booksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9ib29rcw==\n","documentsLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9kb2Nz\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy8=\n","homeLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","library_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9zYXZlZA==\n","load_recommenders":"L2RvYy1wYWdlL3JlY29tbWVuZGVycy84NjU0MjgxNzU=\n","payment_fix":"L2FjY291bnQvcGF5bWVudF9wcm9maWxlX3VwZGF0ZQ==\n","payment_fix_url":null,"personalization_path":"L2RvYy1wYWdlL3BlcnNvbmFsaXphdGlvbg==\n","personalization_afa_path":"L2RvYy1wYWdlL2FmYQ==\n","pingback":["aA==\n","dA==\n","dA==\n","cA==\n","cw==\n","Og==\n","Lw==\n","Lw==\n","dw==\n","dw==\n","dw==\n","Lg==\n","cw==\n","Yw==\n","cg==\n","aQ==\n","Yg==\n","ZA==\n","Lg==\n","Yw==\n","bw==\n","bQ==\n","Lw==\n","ZA==\n","bw==\n","Yw==\n","dQ==\n","bQ==\n","ZQ==\n","bg==\n","dA==\n","cw==\n","Lw==\n","OA==\n","Ng==\n","NQ==\n","NA==\n","Mg==\n","OA==\n","MQ==\n","Nw==\n","NQ==\n","Lw==\n","cA==\n","aQ==\n","bg==\n","Zw==\n","Yg==\n","YQ==\n","Yw==\n","aw==\n"],"register_download_attempt":"L2RvY3VtZW50X2Rvd25sb2Fkcy9yZWdpc3Rlcl9kb3dubG9hZF9hdHRlbXB0\n","request_document_download":"L2RvY3VtZW50X2Rvd25sb2Fkcy9yZXF1ZXN0X2RvY3VtZW50X2Zvcl9kb3du\nbG9hZA==\n","remove_from_library":"L3NhdmVkL3JlbW92ZQ==\n","upload_url":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz04NjU0MjgxNzU=\n"},"props":{"download_receipt_modal":"L2RvYy1wYWdlL2Rvd25sb2FkLXJlY2VpcHQtbW9kYWwtcHJvcHMvODY1NDI4\nMTc1\n","paused_user_download_modal":"L2RvYy1wYWdlL3BhdXNlZC11c2VyLWRvd25sb2FkLW1vZGFsLXByb3Bz\n","pmp_login_join_modal":"L2RvYy1wYWdlL3BtcC1sb2dpbi1qb2luLW1vZGFsLXByb3BzLzg2NTQyODE3\nNQ==\n"}},"features":{"desktopAdsExperience":null,"highlights":true,"isEligibleForPaidDesktopAds":false,"isEligibleForPaidMobileAds":false,"isEligibleForMobileAdsForAccess":false,"isEligibleForProgressiveProfileModal":false,"isEligibleForHouseAds":false,"showDocChatExperience":false,"taxonomyV4UgcBrowsing":true,"docChatAvailable":false}},"i18n":{"currentLanguage":{"prefix":"en","lcid":"en","href":"/language?id=en","lang":"en_US","name":"English"},"languages":[{"prefix":"en","lcid":"en","href":"/language?id=en","lang":"en_US","name":"English"},{"prefix":"es","lcid":"es","href":"/language?id=es","lang":"es-419","name":"Español"},{"prefix":"pt","lcid":"pt-br","href":"/language?id=pt-br","lang":"pt_BR","name":"Português"},{"prefix":"de","lcid":"de","href":"/language?id=de","lang":"de","name":"Deutsch"},{"prefix":"fr","lcid":"fr","href":"/language?id=fr","lang":"fr","name":"Français"},{"prefix":"ru","lcid":"ru","href":"/language?id=ru","lang":"ru_RU","name":"Русский"},{"prefix":"it","lcid":"it","href":"/language?id=it","lang":"it","name":"Italiano"},{"prefix":"ro","lcid":"ro","href":"/language?id=ro","lang":"ro_RO","name":"Română"},{"prefix":"id","lcid":"id","href":"/language?id=id","lang":"id_ID","name":"Bahasa Indonesia"}],"locale":"en-US"},"page":{"savedItems":{"865428175":false}},"personalization":{"trialDuration":null},"ratings":{"865428175":{"averageRating":0,"documentId":865428175,"downvoteCount":0,"ratingCount":0,"upvoteCount":0,"userRating":0}},"recommenders":{"viewport_bottom_recs":{"items":[{"id":865431611,"doc_uuid":"sbd/2hgRw2ZQdfBcNLgmFWfv208="},{"id":612852738,"doc_uuid":"sbd/XM/5urAj66bIsWOQVawOS4U="},{"id":618681579,"doc_uuid":"sbd/rBdxbyxHZD9n/lUxpkK/384="},{"id":761774723,"doc_uuid":"sbd/ZMIqpC9cU2QxSJyboYTETE0="},{"id":796212600,"doc_uuid":"sbd/tm4U3zqvSXchCjyvs8JmyPA="},{"id":726221698,"doc_uuid":"sbd/lomYKgut7MjzACjDfZ2USBA="},{"id":323130307,"doc_uuid":"sbd/U9gzLcTecmzNBzJ9pGpJbrg="},{"id":516378501,"doc_uuid":"sbd/hZBApo52QaQNGg170RzKEfM="},{"id":414855767,"doc_uuid":"sbd/Cspxcs1NkFhOwIJKN3chY1w="},{"id":867033023,"doc_uuid":"sbd/Xu31oeuiRt3Uo2lE9fm5PFI="},{"id":630768437,"doc_uuid":"sbd/r/QjorIDHE51ef5PwAWfxQk="},{"id":632632390,"doc_uuid":"sbd/lyoq1V82FyOMOg79yQV6zS0="},{"id":540319766,"doc_uuid":"sbd/7dx6PW2yFVuXnTVaWMue5ZI="},{"id":748768064,"doc_uuid":"sbd/ecqzqYmr345f6RkLt7/0zWo="},{"id":849218232,"doc_uuid":"sbd/RSSi9Jo/tgP8kiXNQ4xsjSw="},{"id":549713890,"doc_uuid":"sbd/K3HjlP1fJDqb3XQdJIpj1/U="},{"id":747471671,"doc_uuid":"sbd/pcZEfW4lxYOtOMj5NOOmoHg="},{"id":836016254,"doc_uuid":"sbd/Fexni6qNY2QtOFKQ1HQ6uG8="},{"id":85474256,"doc_uuid":"sbd/C45TXPRiVo/W/8eb8tAY7/s="},{"id":825752427,"doc_uuid":"sbd/W1WU1/aZRj3ElEeQphbeN1s="},{"id":797743300,"doc_uuid":"sbd/lwFQLFdxnLj8ur0JWF9xF/M="},{"id":791785305,"doc_uuid":"sbd/5pWX4m4ypg43KsE2WoyjhWI="},{"id":406832943,"doc_uuid":"sbd/Q/DZ7ADcAT/OGrnnmxqYUn0="},{"id":163190218,"doc_uuid":"sbd/g03b6LVvmTRm6b5Jk31rHTU="},{"id":799813491,"doc_uuid":"sbd/d2OULU5YGquezdNoIxGoFbc="},{"id":496623513,"doc_uuid":"sbd/sNLdCO3hCkxPcGWONYtb3TY="},{"id":688307317,"doc_uuid":"sbd/uaw5uk85wmU9Wh9uNJLs8uI="},{"id":875850179,"doc_uuid":"sbd/tWuOhfsfgMHGZKiLEm8l0Ng="},{"id":33363122,"doc_uuid":"sbd/7ewg6CvHDEo1WoBlwk2Rxrg="},{"id":814275823,"doc_uuid":"sbd/mwLmknHsuAn5M0xyBMd3ACA="},{"id":630356000,"doc_uuid":"sbd/rwZnh0Bdkk8pvYn/oEz5XH0="},{"id":819520572,"doc_uuid":"sbd/BuxPVxL/YVp4//EwF7mUvGk="},{"id":466956342,"doc_uuid":"sbd/AbmCet7pKEq4gcgNjh/oils="},{"id":871247242,"doc_uuid":"sbd/qifWBaCXWZ/Czvzm3zSA2Vg="},{"id":752766562,"doc_uuid":"sbd/3wWzrmTJcc1sA9rjbnECu4U="},{"id":699070808,"doc_uuid":"sbd/i7arCv/e2p2dAVeX07RvRgA="},{"id":638017701,"doc_uuid":"sbd/wDdji3v1z5shvVuFIYtJeHs="},{"id":838234857,"doc_uuid":"sbd/dpChZL6ItQSj1JqYsrCbB7A="},{"id":259041113,"doc_uuid":"sbd/OMNfKf5YwrI0tI6v33ziN/Y="},{"id":111678810,"doc_uuid":"sbd/ah7xcgqQEpuUrbWJXiRp8TY="},{"id":849589065,"doc_uuid":"sbd/SkAwwbU5guBb62WerC2p/aE="},{"id":730481125,"doc_uuid":"sbd/Z/2/UmW7Qm3xB4MJB7lH23Q="},{"id":788912559,"doc_uuid":"sbd/HBDOXz5RPpjt3pUxIPZiumk="},{"id":736212372,"doc_uuid":"sbd/i7O0KojpscEs1TWvLkk0fe8="},{"id":445455810,"doc_uuid":"sbd/nmsQ6qefm7qSZUwPsDO45Cg="},{"id":823284687,"doc_uuid":"sbd/5xkbWlBqCV/UmM/gsAh0uSY="},{"id":833377474,"doc_uuid":"sbd/RN6OfHEj/i3jozJEtGol4Ek="},{"id":473332880,"doc_uuid":"sbd/fkQfk3WH8r0AMbGibO9aiFQ="},{"id":820706576,"doc_uuid":"sbd/TvFVxdJNTFlCCmunGo6jAPc="},{"id":837643866,"doc_uuid":"sbd/pqrO8sjqH47edqBtut4ma4A="},{"id":554532436,"doc_uuid":"sbd/chyO62phV84B9mJ4mLpv/LE="},{"id":789993960,"doc_uuid":"sbd//41yq3pXxct10GIwxYIrEPI="},{"id":578913174,"doc_uuid":"sbd/JnST7DDKsC8711zOjQnuVLc="},{"id":295951639,"doc_uuid":"sbd/IY9kY/ypTPYYh/jmiPUJu80="},{"id":690499781,"doc_uuid":"sbd/MmQiAv3URaIfgLNPQCnzAgM="},{"id":670133009,"doc_uuid":"sbd/IAcWkWxmYtFcCDAQ3jK2OvQ="},{"id":798980212,"doc_uuid":"sbd/fY75Mk2z7rQykJwcPt/OlY4="},{"id":865545402,"doc_uuid":"sbd/iQV1UEBSDS6ZBEfEdar/XSw="},{"id":865433362,"doc_uuid":"sbd/q0eHy93zm4nAx4GMbIkTugU="},{"id":865431274,"doc_uuid":"sbd/dLDd9/0mEkxCAV1d9lXQPHs="},{"id":865427044,"doc_uuid":"sbd/WPt8SA5BIYCcx1x0UK/tCI8="},{"id":865423224,"doc_uuid":"sbd/FedIlQFRMuo7cpzTXl7yMQo="},{"id":865426153,"doc_uuid":"sbd/Gnc5fUtUBAZqjP7YZNMkWMU="}],"ids":[865431611,612852738,618681579,761774723,796212600,726221698,323130307,516378501,414855767,867033023,630768437,632632390,540319766,748768064,849218232,549713890,747471671,836016254,85474256,825752427,797743300,791785305,406832943,163190218,799813491,496623513,688307317,875850179,33363122,814275823,630356000,819520572,466956342,871247242,752766562,699070808,638017701,838234857,259041113,111678810,849589065,730481125,788912559,736212372,445455810,823284687,833377474,473332880,820706576,837643866,554532436,789993960,578913174,295951639,690499781,670133009,798980212,865545402,865433362,865431274,865427044,865423224,865426153],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/JPNKAK3Ql6WgIbmn1J7pG6g=","module_id":"sbd/xyjrPPRnCQNvvatGy4tcKUA=","widget_name":"viewport_bottom","track_id":"scroll_recs"}},"list_recommenders":{"items":[{"id":865431611,"doc_uuid":"sbd/GoGi0h2LFIXPspQzHDCfU8w="},{"id":612852738,"doc_uuid":"sbd/m3ht4vPnC6djy0W/buPxMIs="},{"id":618681579,"doc_uuid":"sbd/ffGJMKE4G6iTVLbzjrhvxEk="},{"id":761774723,"doc_uuid":"sbd/GsPhZk2gISY24YxqKr3EdLE="},{"id":796212600,"doc_uuid":"sbd/1XzHMSj3YKZv8sNx8iixwh4="},{"id":726221698,"doc_uuid":"sbd/qe9Aa8/LYui/2NRLLZrALik="},{"id":323130307,"doc_uuid":"sbd/KMpoD2deG0dhfDb6Cb1xiPw="},{"id":516378501,"doc_uuid":"sbd/YMz85Eo4RfLP9XVHCIwSQSo="},{"id":414855767,"doc_uuid":"sbd/VJj5XkOf8lJ6fCEI7yYrQ2c="},{"id":867033023,"doc_uuid":"sbd/hEfhqQ7fHf1PsZUFZifYyZ4="},{"id":630768437,"doc_uuid":"sbd/0hXSAbE1BYpfgGtM8Frq0tc="},{"id":632632390,"doc_uuid":"sbd/tlO3omc2p3Tge6j9WRjyUF4="},{"id":540319766,"doc_uuid":"sbd/5mQBSldyYL81zr/m2q2/tpk="},{"id":748768064,"doc_uuid":"sbd/KheeleheB6M6nf/ItfmdUe8="},{"id":849218232,"doc_uuid":"sbd/TYw3mEbGktYYIfI0Qjf52S4="},{"id":549713890,"doc_uuid":"sbd/vEYFEtqdxT6rgpBAHOvPXAo="},{"id":747471671,"doc_uuid":"sbd/r4OjkvmqPBhZYGfztkyQ0Jk="},{"id":836016254,"doc_uuid":"sbd/oHHJT/ilQUdBotiHk5Bz/R4="},{"id":85474256,"doc_uuid":"sbd/Krbk/EoIGNCVWAzbRJSxG/M="},{"id":825752427,"doc_uuid":"sbd/v9WSG24JJYV0DkD2Qb/0Etc="},{"id":797743300,"doc_uuid":"sbd/wgs/gaOzrc/b3z7wkZ7rVN0="},{"id":791785305,"doc_uuid":"sbd/A6fLJ06CuDdYoJsxm0FF1vI="},{"id":406832943,"doc_uuid":"sbd/i200zosxHJlkWuXIPF3q1LI="},{"id":163190218,"doc_uuid":"sbd/2W2zrcjmoph9rXSWDM1eqDs="},{"id":799813491,"doc_uuid":"sbd/T9568nqI/lxcA0RfmcCqkHw="},{"id":496623513,"doc_uuid":"sbd/TnZhVPac0cTI08U06hAiiRg="},{"id":688307317,"doc_uuid":"sbd/iYYDXvbIaWJZItxqzvzXUl4="},{"id":875850179,"doc_uuid":"sbd/4uY1DA6GaWASBHpE2srmGEs="},{"id":33363122,"doc_uuid":"sbd/faw5j7peBuLpdBJN2H2hHls="},{"id":814275823,"doc_uuid":"sbd/KDwLAYXj2qC8CmD8iBFGjFM="},{"id":630356000,"doc_uuid":"sbd/Gdu2p6ZFba97eHQUD9EsgCE="},{"id":819520572,"doc_uuid":"sbd/EWHUqsyg/w1tvOIagCjnupU="},{"id":466956342,"doc_uuid":"sbd/q7XqLnbngmlVHu8ADzRC2KY="},{"id":871247242,"doc_uuid":"sbd/EkhbpXPGo1PoPgmIsPNfhAs="},{"id":752766562,"doc_uuid":"sbd/P4AhOc87VfnDxiMkgC7E8pE="},{"id":699070808,"doc_uuid":"sbd/FUYzAaOChi5KKXATOhYptnA="},{"id":638017701,"doc_uuid":"sbd/JKsKf7aJNyB20cvctUVMQk0="},{"id":838234857,"doc_uuid":"sbd/UGEuM46hKf6JNrZMXUdcGLQ="},{"id":259041113,"doc_uuid":"sbd/Ai3C8guY75WReHZjPHdXH4o="},{"id":111678810,"doc_uuid":"sbd/ZRCWAc9qA17iKc25JkTm1kk="},{"id":849589065,"doc_uuid":"sbd/rjEKNOrZHFndd0StPL9z2KE="},{"id":730481125,"doc_uuid":"sbd/2Y/nKweD7VcLtcCQkLeJE68="},{"id":788912559,"doc_uuid":"sbd/w1SHdsVxTwbP1khx4RVuOd8="},{"id":736212372,"doc_uuid":"sbd/xGtKJrOvFyKCMQwpJTzDsk8="},{"id":445455810,"doc_uuid":"sbd/TANoVveFSTRbL28llNx0qsE="},{"id":823284687,"doc_uuid":"sbd/uZvAe0l8ic7c9N7/MP1Auak="},{"id":833377474,"doc_uuid":"sbd/o0meBA1sYwkVNJyrJJZyAvs="},{"id":473332880,"doc_uuid":"sbd/ufSXsKWXE66CWHe8njvyB2A="},{"id":820706576,"doc_uuid":"sbd/szGdDl2DhPgSh8hrZYbX4Xs="},{"id":837643866,"doc_uuid":"sbd/LCltAdJ50qwzaoG6elpYgWM="},{"id":554532436,"doc_uuid":"sbd/S7EnIQTjSSCASSlU0TlJCyo="},{"id":789993960,"doc_uuid":"sbd/R2a5/4DarNYh3VZf409F1Ss="},{"id":578913174,"doc_uuid":"sbd/o/ZwAg7VsEqMu6hmlI8DXs4="},{"id":295951639,"doc_uuid":"sbd/Cno8n0D8QKykpoMTU5pZNAc="},{"id":690499781,"doc_uuid":"sbd/PVaGWa2BHk8tpyFYhM5amuU="},{"id":670133009,"doc_uuid":"sbd/S3z6bZ6wklFcGAHuzIKNvJk="},{"id":798980212,"doc_uuid":"sbd/qZ6RP7j/2AcVX1D6OrCmebU="},{"id":865545402,"doc_uuid":"sbd/0sx0ecfocjgE/IYk0aoYFVE="},{"id":865433362,"doc_uuid":"sbd/3/zY9N35QHtIpNoCijyRqAQ="},{"id":865431274,"doc_uuid":"sbd/mWR5AY2wdzIz9rfxfyjWyDY="},{"id":865427044,"doc_uuid":"sbd/79NKqRjfp1grxpQF27fxOos="},{"id":865423224,"doc_uuid":"sbd/uMYA7JKi066E4lJMccB9dyM="},{"id":865426153,"doc_uuid":"sbd/i5lM3Xu1YReYLwEbb235AGE="}],"ids":[865431611,612852738,618681579,761774723,796212600,726221698,323130307,516378501,414855767,867033023,630768437,632632390,540319766,748768064,849218232,549713890,747471671,836016254,85474256,825752427,797743300,791785305,406832943,163190218,799813491,496623513,688307317,875850179,33363122,814275823,630356000,819520572,466956342,871247242,752766562,699070808,638017701,838234857,259041113,111678810,849589065,730481125,788912559,736212372,445455810,823284687,833377474,473332880,820706576,837643866,554532436,789993960,578913174,295951639,690499781,670133009,798980212,865545402,865433362,865431274,865427044,865423224,865426153],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/JPNKAK3Ql6WgIbmn1J7pG6g=","module_id":"sbd/jaa/OnMaI7S46TjSB8LkZY0=","widget_name":"recommender_list","track_id":"doc_page_user_experience_top"}},"documents":{"33363122":{"author":"Rubi Lyn","author_url":"https://www.scribd.com/user/29354023/Rubi-Lyn","categories":[],"description":null,"id":33363122,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":79,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/33363122/298x396/f810fb239d/1316052465?v=1","run_time":0,"short_title":"HTML Tutorial","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/33363122/149x198/5c37c2b20d/1316052465?v=1","title":"HTML Tutorial","type":"document","url":"https://www.scribd.com/document/33363122/HTML-Tutorial","views":"180"},"85474256":{"author":"Andrei Crișan","author_url":"https://www.scribd.com/user/45701527/Andrei-Cri%C8%99an","categories":[],"description":null,"id":85474256,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/85474256/298x396/325448619b/1331818959?v=1","run_time":0,"short_title":"Modern Web Browser","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/85474256/149x198/ed8ed88b2d/1331818959?v=1","title":"Modern Web Browser: Mozilla Firefox 3+ Google Chrome Apple Safari 4+ Opera 10+ Microsoft Internet Explorer 8","type":"document","url":"https://www.scribd.com/document/85474256/Part-1","views":"135"},"111678810":{"author":"Will Kurlinkus","author_url":"https://www.scribd.com/user/47913965/Will-Kurlinkus","categories":[],"description":null,"id":111678810,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":9,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/111678810/298x396/34ab2bb2af/1380157732?v=1","run_time":0,"short_title":"Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/111678810/149x198/635159202c/1380157732?v=1","title":"Introduction To HTML: Will Kurlinkus","type":"document","url":"https://www.scribd.com/document/111678810/HTML-Intro","views":"1.3K"},"163190218":{"author":"Paras Bali","author_url":"https://www.scribd.com/user/219044514/Paras-Bali","categories":[],"description":"web developement slides","id":163190218,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":13,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/163190218/298x396/fcf06b22c7/1377528712?v=1","run_time":0,"short_title":"Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/163190218/149x198/5c03bbd7b8/1377528712?v=1","title":"Introduction To HTML","type":"document","url":"https://www.scribd.com/document/163190218/12431-introduction-to-HTML","views":"79"},"259041113":{"author":"Remuelito Maque Remulta","author_url":"https://www.scribd.com/user/98271892/Remuelito-Maque-Remulta","categories":[],"description":"Brief description and basic example tags of Hyper-Text Mark-up Language (HTML)","id":259041113,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":36,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/259041113/298x396/397a3d45ad/1426606365?v=1","run_time":0,"short_title":"Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/259041113/149x198/b3ffb45ff9/1426606365?v=1","title":"Introduction To HTML","type":"document","url":"https://www.scribd.com/document/259041113/Introduction-to-HTML","views":"101"},"295951639":{"author":"Argie Zamora Jr.","author_url":"https://www.scribd.com/user/285376549/Argie-Zamora-Jr","categories":[],"description":"This handouts provide information about the Introduction to Web Development.","id":295951639,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/295951639/298x396/00ba410437/1704639643?v=1","run_time":0,"short_title":"Grade 8 - Web Designing","static_rating":{"rating":5,"count":1,"up_count":1},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/295951639/149x198/fa62ad0702/1704639643?v=1","title":"Grade 8 - Web Designing","type":"document","url":"https://www.scribd.com/document/295951639/Grade-8-Web-Designing","views":"1.9K"},"323130307":{"author":"Educ","author_url":"https://www.scribd.com/user/322111543/Educ","categories":[],"description":"","id":323130307,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/323130307/298x396/63ce105f7a/1473151814?v=1","run_time":0,"short_title":"CreatingWebPages Part1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/323130307/149x198/8ae07405be/1473151814?v=1","title":"CreatingWebPages Part1","type":"document","url":"https://www.scribd.com/presentation/323130307/CreatingWebPages-Part1","views":"90"},"406832943":{"author":"Teja Krishna Mutluri","author_url":"https://www.scribd.com/user/291329963/Teja-Krishna-Mutluri","categories":[],"description":null,"id":406832943,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":50,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/406832943/298x396/91b296e70a/1555694070?v=1","run_time":0,"short_title":"HTML PDF","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/406832943/149x198/aa02739d0e/1555694070?v=1","title":"HTML PDF","type":"document","url":"https://www.scribd.com/document/406832943/html-pdf","views":"225"},"414855767":{"author":"Olphil Olphil","author_url":"https://www.scribd.com/user/176629590/Olphil-Olphil","categories":[],"description":"HTML PPT","id":414855767,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":57,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/414855767/298x396/91cc5fbbc3/1561721348?v=1","run_time":0,"short_title":"Lesson1-Intro To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/414855767/149x198/4c6e34ce87/1561721348?v=1","title":"Lesson1-Intro To HTML","type":"document","url":"https://www.scribd.com/presentation/414855767/Lesson1-Intro-to-HTML","views":"82"},"445455810":{"author":"Marck","author_url":"https://www.scribd.com/user/319198410/Marck","categories":[],"description":null,"id":445455810,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":132,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/445455810/298x396/c1282a4591/1580786835?v=1","run_time":0,"short_title":"WEB Development PDF","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/445455810/149x198/de59a69271/1580786835?v=1","title":"WEB Development PDF","type":"document","url":"https://www.scribd.com/document/445455810/WEB-Development-pdf","views":"64"},"466956342":{"author":"Aishwarya Jaiswal","author_url":"https://www.scribd.com/user/493819783/Aishwarya-Jaiswal","categories":[],"description":null,"id":466956342,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":135,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/466956342/298x396/023435ef64/1593113517?v=1","run_time":0,"short_title":"Unit 2 Web Dev","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/466956342/149x198/86e5d8bc38/1593113517?v=1","title":"Unit 2 Web Dev","type":"document","url":"https://www.scribd.com/document/466956342/unit-2-web-dev-doc-docx","views":"398"},"473332880":{"author":"Shubh Yadav","author_url":"https://www.scribd.com/user/436627469/Shubh-Yadav","categories":[],"description":null,"id":473332880,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":21,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/473332880/298x396/8fb9637091/1598152184?v=1","run_time":0,"short_title":"Unit 2 Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/473332880/149x198/5d85c02732/1598152184?v=1","title":"Unit 2 Introduction To HTML: Structure","type":"document","url":"https://www.scribd.com/document/473332880/Unit-2-pdf","views":"236"},"496623513":{"author":"NgọcAnhNguyễn","author_url":"https://www.scribd.com/user/254803608/Ng%E1%BB%8DcAnhNguy%E1%BB%85n","categories":[],"description":"Workshop 1 Guide 2020","id":496623513,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":17,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/496623513/298x396/44c7673c5d/1710539890?v=1","run_time":0,"short_title":"Workshop 1 Guide - 2020","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/496623513/149x198/6ec0544d08/1710539890?v=1","title":"Workshop 1 Guide - 2020","type":"document","url":"https://www.scribd.com/document/496623513/Workshop-1-Guide-2020","views":"78"},"516378501":{"author":"Raya Ahmada","author_url":"https://www.scribd.com/user/413978760/Raya-Ahmada","categories":[],"description":"","id":516378501,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":83,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/516378501/298x396/09cdcec56b/1710568026?v=1","run_time":0,"short_title":"HTML Basics","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/516378501/149x198/fe7c3e60ae/1710568026?v=1","title":"HTML Basics: This Work Is Licensed Under A","type":"document","url":"https://www.scribd.com/presentation/516378501/HTML-Basics","views":"61"},"540319766":{"author":"bunny doll","author_url":"https://www.scribd.com/user/549016027/bunny-doll","categories":[],"description":"this doc is easy to follow.","id":540319766,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/540319766/298x396/b8eb5858b4/1637142008?v=1","run_time":0,"short_title":"HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/540319766/149x198/83239562fd/1637142008?v=1","title":"HTML","type":"document","url":"https://www.scribd.com/document/540319766/HTML","views":"52"},"549713890":{"author":"Kaviyarasi Arunkumar","author_url":"https://www.scribd.com/user/191939026/Kaviyarasi-Arunkumar","categories":[],"description":"","id":549713890,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":304,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/549713890/298x396/0469c1b788/1710576673?v=1","run_time":0,"short_title":"Ilovepdf Merged","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/549713890/149x198/82ef838938/1710576673?v=1","title":"Ilovepdf Merged","type":"document","url":"https://www.scribd.com/document/549713890/ilovepdf-merged","views":"299"},"554532436":{"author":"BHAWANA PANDEY","author_url":"https://www.scribd.com/user/591059266/BHAWANA-PANDEY","categories":[],"description":"","id":554532436,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":33,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/554532436/298x396/31be106571/1710590564?v=1","run_time":0,"short_title":"Lesson 1 Learning The Basics","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/554532436/149x198/eff0356aff/1710590564?v=1","title":"Lesson 1 Learning The Basics: A Beginner's Tutorial To HTML Demo","type":"document","url":"https://www.scribd.com/document/554532436/A-Beginner-html","views":"76"},"578913174":{"author":"sanchit","author_url":"https://www.scribd.com/user/338460163/sanchit","categories":[],"description":"Practical File html","id":578913174,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":90,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/578913174/298x396/1fa72c676b/1710588785?v=1","run_time":0,"short_title":"Practical File HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/578913174/149x198/3ad0beac56/1710588785?v=1","title":"Practical File HTML","type":"document","url":"https://www.scribd.com/document/578913174/Practical-File-html","views":"2.0K"},"612852738":{"author":"HASEN SEID","author_url":"https://www.scribd.com/user/636994667/HASEN-SEID","categories":[],"description":"internet programming","id":612852738,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":57,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/612852738/298x396/fd4642b0b3/1670407032?v=1","run_time":0,"short_title":"Ip Chapter 2 HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/612852738/149x198/e45f4f163f/1670407032?v=1","title":"Ip Chapter 2 HTML","type":"document","url":"https://www.scribd.com/document/612852738/Ip-Chapter-2-HTML","views":"137"},"618681579":{"author":"Yohannes Genetu","author_url":"https://www.scribd.com/user/617699625/Yohannes-Genetu","categories":[],"description":null,"id":618681579,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":120,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/618681579/298x396/40ee1c731b/1673259160?v=1","run_time":0,"short_title":"Ch2 - HTML-1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/618681579/149x198/ab515f3d80/1673259160?v=1","title":"Ch2 - HTML-1","type":"document","url":"https://www.scribd.com/presentation/618681579/Ch2-HTML-1","views":"77"},"630356000":{"author":"Ndubuisi Igwe","author_url":"https://www.scribd.com/user/547572002/Ndubuisi-Igwe","categories":[],"description":"for web developers prospects","id":630356000,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/630356000/298x396/f910da5532/1710564035?v=1","run_time":0,"short_title":"Basic Web Pages Tutorial - HTML &amp; CSS Is Hard","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/630356000/149x198/718c1098d1/1710564035?v=1","title":"Basic Web Pages Tutorial - HTML &amp; CSS Is Hard","type":"document","url":"https://www.scribd.com/document/630356000/Basic-Web-Pages-Tutorial-HTML-CSS-Is-Hard","views":"63"},"630768437":{"author":"nuwahikire elly (ellygotten)","author_url":"https://www.scribd.com/user/648965397/nuwahikire-elly-ellygotten","categories":[],"description":"","id":630768437,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":50,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/630768437/298x396/482ea6b126/1710526511?v=1","run_time":0,"short_title":"HTML SYlABUS","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/630768437/149x198/4c92a9500a/1710526511?v=1","title":"HTML SYlABUS","type":"document","url":"https://www.scribd.com/document/630768437/HTML-SYlABUS","views":"93"},"632632390":{"author":"Sumati Baral","author_url":"https://www.scribd.com/user/188159950/Sumati-Baral","categories":[],"description":"","id":632632390,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":29,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/632632390/298x396/9cf1818cef/1710545171?v=1","run_time":0,"short_title":"HTML Notes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/632632390/149x198/bff6c40da5/1710545171?v=1","title":"HTML Notes","type":"document","url":"https://www.scribd.com/document/632632390/HTML-NOTES","views":"173"},"638017701":{"author":"sanchit","author_url":"https://www.scribd.com/user/338460163/sanchit","categories":[],"description":"","id":638017701,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":90,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/638017701/298x396/77d936f4b4/1710564097?v=1","run_time":0,"short_title":"Priya File","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/638017701/149x198/e704257b76/1710564097?v=1","title":"Priya File","type":"document","url":"https://www.scribd.com/document/638017701/priya-File","views":"176"},"670133009":{"author":"Shaniece Kubie","author_url":"https://www.scribd.com/user/628377629/Shaniece-Kubie","categories":[],"description":"Presentation","id":670133009,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":10,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/670133009/298x396/8e085c60fa/1710563194?v=1","run_time":0,"short_title":"(HTML) Basic Concepts of Web Design","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/670133009/149x198/a92cf5739a/1710563194?v=1","title":"(HTML) Basic Concepts of Web Design","type":"document","url":"https://www.scribd.com/presentation/670133009/HTML-BASIC-CONCEPTS-OF-WEB-DESIGN","views":"43"},"688307317":{"author":"Yenatu Lij Baye","author_url":"https://www.scribd.com/user/387233425/Yenatu-Lij-Baye","categories":[],"description":null,"id":688307317,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":142,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/688307317/298x396/7f26a59fcd/1701264206?v=1","run_time":0,"short_title":"Chapter 1 - HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/688307317/149x198/b2546e7274/1701264206?v=1","title":"Chapter 1 - HTML","type":"document","url":"https://www.scribd.com/presentation/688307317/Chapter-1-HTML","views":"20"},"690499781":{"author":"mosifalishaik","author_url":"https://www.scribd.com/user/709846532/mosifalishaik","categories":[],"description":"html introduction","id":690499781,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":36,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/690499781/298x396/fc258c96af/1701940397?v=1","run_time":0,"short_title":"Introdution To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/690499781/149x198/85dd9645ca/1701940397?v=1","title":"Introdution To HTML","type":"document","url":"https://www.scribd.com/presentation/690499781/Introdution-to-HTML","views":"51"},"699070808":{"author":"Omar Ayman","author_url":"https://www.scribd.com/user/544712658/Omar-Ayman","categories":[],"description":"Web programming","id":699070808,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":17,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/699070808/298x396/2ef7de70af/1710530082?v=1","run_time":0,"short_title":"Part 2","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/699070808/149x198/226706a42a/1710530082?v=1","title":"Part 2","type":"document","url":"https://www.scribd.com/document/699070808/Part-2","views":"30"},"726221698":{"author":"emlyn ngwiri","author_url":"https://www.scribd.com/user/344915318/emlyn-ngwiri","categories":[],"description":"dvzsdg","id":726221698,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":28,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/726221698/298x396/a44429189d/1713963014?v=1","run_time":0,"short_title":"HTLM Intro","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/726221698/149x198/7b940e3a01/1713963014?v=1","title":"HTLM Intro","type":"document","url":"https://www.scribd.com/document/726221698/Htlm-Intro","views":"69"},"730481125":{"author":"Zepox","author_url":"https://www.scribd.com/user/636246246/Zepox","categories":[],"description":"","id":730481125,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":66,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/730481125/298x396/89858e67f9/1715160181?v=1","run_time":0,"short_title":"Lecture 2 IntroHTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/730481125/149x198/c7e54517f7/1715160181?v=1","title":"Lecture 2 IntroHTML","type":"document","url":"https://www.scribd.com/presentation/730481125/Lecture-2-IntroHTML","views":"22"},"736212372":{"author":"Brian Kimario","author_url":"https://www.scribd.com/user/681828920/Brian-Kimario","categories":[],"description":"","id":736212372,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":50,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/736212372/298x396/7e5730a0d6/1716718115?v=1","run_time":0,"short_title":"HTML ","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/736212372/149x198/15e5078cde/1716718115?v=1","title":"HTML ","type":"document","url":"https://www.scribd.com/document/736212372/HTML","views":"21"},"747471671":{"author":"mahimuddinrakima","author_url":"https://www.scribd.com/user/763439362/mahimuddinrakima","categories":[],"description":"Book written by me.","id":747471671,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/747471671/298x396/8f1142fd4e/1719977376?v=1","run_time":0,"short_title":"HTML5 Beginer To Warrior","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/747471671/149x198/014b8e0fc3/1719977376?v=1","title":"HTML5 Beginer To Warrior","type":"document","url":"https://www.scribd.com/document/747471671/HTML5-BEGINER-TO-WARRIOR","views":"29"},"748768064":{"author":"Sarvat Naz","author_url":"https://www.scribd.com/user/45651102/Sarvat-Naz","categories":[],"description":null,"id":748768064,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":106,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/748768064/298x396/053915333d/1720431999?v=1","run_time":0,"short_title":"Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/748768064/149x198/93c9c29b56/1720431999?v=1","title":"Introduction To HTML","type":"document","url":"https://www.scribd.com/presentation/748768064/Introduction-to-HTML","views":"7"},"752766562":{"author":"chipichapa079","author_url":"https://www.scribd.com/user/768843962/chipichapa079","categories":[],"description":"My book of click start some pages class7","id":752766562,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":9,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/752766562/298x396/02dc32353d/1721750137?v=1","run_time":0,"short_title":"Adobe Scan Jul 01, 2023","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/752766562/149x198/3c2fd78338/1721750137?v=1","title":"Adobe Scan Jul 01, 2023","type":"document","url":"https://www.scribd.com/document/752766562/Adobe-Scan-Jul-01-2023","views":"21"},"761774723":{"author":"hithesh.karthikeya.lanka","author_url":"https://www.scribd.com/user/747699570/hithesh-karthikeya-lanka","categories":[],"description":"html","id":761774723,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":65,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/761774723/298x396/b721d6cb28/1724393526?v=1","run_time":0,"short_title":"Unit-I - HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/761774723/149x198/eb9a0bfef3/1724393526?v=1","title":"Unit-I - HTML","type":"document","url":"https://www.scribd.com/presentation/761774723/2-Unit-I-HTML","views":"6"},"788912559":{"author":"Kimani Chambers","author_url":"https://www.scribd.com/user/683071325/Kimani-Chambers","categories":[],"description":"An Introduction to the basics of HTML","id":788912559,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":20,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/788912559/298x396/59f3c79538/1730923284?v=1","run_time":0,"short_title":"Introduction To HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/788912559/149x198/b15e082c2a/1730923284?v=1","title":"Introduction To HTML","type":"document","url":"https://www.scribd.com/document/788912559/Introduction-to-HTML","views":"19"},"789993960":{"author":"Hana Yaregal","author_url":"https://www.scribd.com/user/672416405/Hana-Yaregal","categories":[],"description":"","id":789993960,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":91,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/789993960/298x396/fd14dab2e2/1731154972?v=1","run_time":0,"short_title":"WP - Chapter Two","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/789993960/149x198/d958661fbe/1731154972?v=1","title":"WP - Chapter Two","type":"document","url":"https://www.scribd.com/document/789993960/WP-Chapter-two","views":"35"},"791785305":{"author":"rowthulalokesh","author_url":"https://www.scribd.com/user/750022878/rowthulalokesh","categories":[],"description":null,"id":791785305,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":56,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/791785305/298x396/b97580ac94/1731506341?v=1","run_time":0,"short_title":"Fswd@unit 1@aiml","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/791785305/149x198/6c816e7ec8/1731506341?v=1","title":"Fswd@unit 1@aiml","type":"document","url":"https://www.scribd.com/document/791785305/FSWD-UNIT-1-AIML","views":"43"},"796212600":{"author":"bogojupranay1","author_url":"https://www.scribd.com/user/810238179/bogojupranay1","categories":[],"description":"","id":796212600,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":94,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/796212600/298x396/60aef8c69f/1732445309?v=1","run_time":0,"short_title":"HTML Tags","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/796212600/149x198/bb95c3a371/1732445309?v=1","title":"HTML Tags","type":"document","url":"https://www.scribd.com/presentation/796212600/HTML-tags","views":"56"},"797743300":{"author":"CHETAN","author_url":"https://www.scribd.com/user/3353051/CHETAN","categories":[],"description":null,"id":797743300,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/797743300/298x396/f6957e71c1/1732737136?v=1","run_time":0,"short_title":"HTML Notes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/797743300/149x198/95d8203d0b/1732737136?v=1","title":"HTML Notes","type":"document","url":"https://www.scribd.com/document/797743300/HTML-Notes","views":"28"},"798980212":{"author":"BlandineLupin","author_url":"https://www.scribd.com/user/265115717/BlandineLupin","categories":[],"description":"","id":798980212,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":133,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/798980212/298x396/24bcd2b2a8/1733001799?v=1","run_time":0,"short_title":"Coding Skills","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/798980212/149x198/0bca61f902/1733001799?v=1","title":"Coding Skills","type":"document","url":"https://www.scribd.com/document/798980212/Coding-Skills","views":"22"},"799813491":{"author":"johnsmith20h2","author_url":"https://www.scribd.com/user/813293220/johnsmith20h2","categories":[],"description":"","id":799813491,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":25,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/799813491/298x396/4b89321d10/1733169397?v=1","run_time":0,"short_title":"a1.3.0.0 INTRODUCTION TO WEBSITE DESIGNING","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/799813491/149x198/c85b108267/1733169397?v=1","title":"a1.3.0.0 INTRODUCTION TO WEBSITE DESIGNING","type":"document","url":"https://www.scribd.com/document/799813491/a1-3-0-0-INTRODUCTION-TO-WEBSITE-DESIGNING","views":"44"},"814275823":{"author":"omarmak008","author_url":"https://www.scribd.com/user/787114549/omarmak008","categories":[],"description":"Rgdgjy","id":814275823,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":84,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/814275823/298x396/787066f35c/1736563486?v=1","run_time":0,"short_title":"Merged_20241228_072","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/814275823/149x198/43b0ed9e21/1736563486?v=1","title":"Merged_20241228_072","type":"document","url":"https://www.scribd.com/document/814275823/Merged-20241228-072","views":"7"},"819520572":{"author":"shashwat","author_url":"https://www.scribd.com/user/718520361/shashwat","categories":[],"description":null,"id":819520572,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":98,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/819520572/298x396/a905c1c538/1737697219?v=1","run_time":0,"short_title":"Chapter 10 - HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/819520572/149x198/7ae12cbafe/1737697219?v=1","title":"Chapter 10 - HTML","type":"document","url":"https://www.scribd.com/presentation/819520572/Chapter-10-HTML","views":"16"},"820706576":{"author":"samson jinadu","author_url":"https://www.scribd.com/user/546957801/samson-jinadu","categories":[],"description":"html","id":820706576,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/820706576/298x396/607bad541c/1737990861?v=1","run_time":0,"short_title":"yahxee 1st class","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/820706576/149x198/8707501787/1737990861?v=1","title":"yahxee 1st class","type":"document","url":"https://www.scribd.com/presentation/820706576/yahxee-1st-class","views":"26"},"823284687":{"author":"venkat Mohan","author_url":"https://www.scribd.com/user/650628300/venkat-Mohan","categories":[],"description":"","id":823284687,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":45,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/823284687/298x396/509e9d8243/1738565834?v=1","run_time":0,"short_title":"introdution-to-html","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/823284687/149x198/3d8c9031b7/1738565834?v=1","title":"introdution-to-html","type":"document","url":"https://www.scribd.com/presentation/823284687/introdution-to-html","views":"22"},"825752427":{"author":"heba elkouly","author_url":"https://www.scribd.com/user/536282844/heba-elkouly","categories":[],"description":"data input","id":825752427,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/825752427/298x396/bd00a0ccbb/1739077818?v=1","run_time":0,"short_title":"Ch-4-HTML_CSS","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/825752427/149x198/dbdd422186/1739077818?v=1","title":"Ch-4-HTML_CSS","type":"document","url":"https://www.scribd.com/document/825752427/Ch-4-HTML-CSS","views":"12"},"833377474":{"author":"nishtha5806","author_url":"https://www.scribd.com/user/795677962/nishtha5806","categories":[],"description":"","id":833377474,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":47,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/833377474/298x396/71d6d57af0/1740657575?v=1","run_time":0,"short_title":"html","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/833377474/149x198/7710aeb529/1740657575?v=1","title":"html","type":"document","url":"https://www.scribd.com/document/833377474/html","views":"14"},"836016254":{"author":"mdsahid198826","author_url":"https://www.scribd.com/user/844239834/mdsahid198826","categories":[],"description":"","id":836016254,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/836016254/298x396/0ff2877888/1741252594?v=1","run_time":0,"short_title":"HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836016254/149x198/bb6782428d/1741252594?v=1","title":"HTML","type":"document","url":"https://www.scribd.com/document/836016254/HTML","views":"18"},"837643866":{"author":"mamatha.pragada","author_url":"https://www.scribd.com/user/845510343/mamatha-pragada","categories":[],"description":null,"id":837643866,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":100,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/837643866/298x396/e9d547604e/1741631325?v=1","run_time":0,"short_title":"HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/837643866/149x198/699bbff29d/1741631325?v=1","title":"HTML","type":"document","url":"https://www.scribd.com/presentation/837643866/HTML","views":"15"},"838234857":{"author":"thapakrishog","author_url":"https://www.scribd.com/user/845042644/thapakrishog","categories":[],"description":null,"id":838234857,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/838234857/298x396/fbdef9022d/1741749595?v=1","run_time":0,"short_title":"Week 5 - Web Designing","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/838234857/149x198/a91b49e27e/1741749595?v=1","title":"Week 5 - Web Designing","type":"document","url":"https://www.scribd.com/presentation/838234857/Week-5-Web-Designing","views":"19"},"849218232":{"author":"abhishek kumar bhaugeeruthy","author_url":"https://www.scribd.com/user/558531180/abhishek-kumar-bhaugeeruthy","categories":[],"description":"","id":849218232,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/849218232/298x396/49a9042e43/1744485036?v=1","run_time":0,"short_title":"MM211 - Lecture 03 HTML 1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/849218232/149x198/e734c238cf/1744485036?v=1","title":"MM211 - Lecture 03 HTML 1","type":"document","url":"https://www.scribd.com/presentation/849218232/MM211-Lecture-03-HTML-1","views":"8"},"849589065":{"author":"yakubuadamugama","author_url":"https://www.scribd.com/user/854702614/yakubuadamugama","categories":[],"description":null,"id":849589065,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":23,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/849589065/298x396/77d04c6d27/1744591701?v=1","run_time":0,"short_title":"Introduction to HTML CSC 221","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/849589065/149x198/276354c089/1744591701?v=1","title":"Introduction to HTML CSC 221","type":"document","url":"https://www.scribd.com/document/849589065/Introduction-to-HTML-CSC-221","views":"4"},"865423224":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":null,"id":865423224,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":101,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865423224/298x396/62c469bdbb/1747899115?v=1","run_time":0,"short_title":"1743066718611","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865423224/149x198/9a07120f1e/1747899115?v=1","title":"1743066718611","type":"document","url":"https://www.scribd.com/document/865423224/1743066718611","views":"5"},"865426153":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This is data structure and algorthm lecture note, it tells about structure,linked list and their implementation","id":865426153,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":29,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865426153/298x396/e674731c27/1747898761?v=1","run_time":0,"short_title":"Lecture 3 - Data Structures (2)(1)","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865426153/149x198/f00eb7e7b6/1747898761?v=1","title":"Lecture 3 - Data Structures (2)(1)","type":"document","url":"https://www.scribd.com/presentation/865426153/Lecture-3-Data-Structures-2-1","views":"19"},"865427044":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This is DCN lecture note for higher education level students it tells about network security","id":865427044,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":56,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865427044/298x396/1a9ee425f0/1747898904?v=1","run_time":0,"short_title":"DCCN CH-7 Security","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865427044/149x198/75d7ee0c0a/1747898904?v=1","title":"DCCN CH-7 Security","type":"document","url":"https://www.scribd.com/presentation/865427044/DCCN-CH-7-Security","views":"13"},"865431274":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This is data communication and networking","id":865431274,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":45,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865431274/298x396/0c1ca6478c/1747899748?v=1","run_time":0,"short_title":"DCCN CH-2","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865431274/149x198/96335ba3f4/1747899748?v=1","title":"DCCN CH-2","type":"document","url":"https://www.scribd.com/presentation/865431274/DCCN-CH-2","views":"9"},"865431611":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This tells about the html ,in internet programming course","id":865431611,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":62,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865431611/298x396/2c34427187/1747899819?v=1","run_time":0,"short_title":"Word2pdf_Chapter 2- Basics of HTML_1743060597810","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865431611/149x198/0d22041644/1747899819?v=1","title":"Word2pdf_Chapter 2- Basics of HTML_1743060597810","type":"document","url":"https://www.scribd.com/document/865431611/Word2pdf-Chapter-2-Basics-of-HTML-1743060597810","views":"10"},"865433362":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This is data communication and networking short note for higher education students","id":865433362,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865433362/298x396/04cbd61a01/1747900137?v=1","run_time":0,"short_title":"DCCN CH-6","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865433362/149x198/ebb3b0a5c9/1747900137?v=1","title":"DCCN CH-6","type":"document","url":"https://www.scribd.com/presentation/865433362/DCCN-CH-6","views":"8"},"865545402":{"author":"bereketsolomon861","author_url":"https://www.scribd.com/user/866643046/bereketsolomon861","categories":[],"description":"This is wachemo university data communicaton and networking project","id":865545402,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":3,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/865545402/298x396/5876fef933/1747927200?v=1","run_time":0,"short_title":"DCCN PROJECT","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/865545402/149x198/4313599376/1747927200?v=1","title":"DCCN PROJECT","type":"document","url":"https://www.scribd.com/document/865545402/DCCN-PROJECT","views":"10"},"867033023":{"author":"kaleabmarkos142","author_url":"https://www.scribd.com/user/865878900/kaleabmarkos142","categories":[],"description":"Introduction to Hyper Text Markup Language (HTML)","id":867033023,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":121,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/867033023/298x396/718f5d5603/1748207816?v=1","run_time":0,"short_title":"Chapter-4 Introduction to Hyper Text Markup Language (HTML)","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/867033023/149x198/79f438928d/1748207816?v=1","title":"Chapter-4 Introduction to Hyper Text Markup Language (HTML)","type":"document","url":"https://www.scribd.com/document/867033023/Chapter-4-Introduction-to-Hyper-Text-Markup-Language-HTML","views":"3"},"871247242":{"author":"simazuorobert196","author_url":"https://www.scribd.com/user/712497399/simazuorobert196","categories":[],"description":null,"id":871247242,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":17,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/871247242/298x396/45a2e9f488/1748963433?v=1","run_time":0,"short_title":"Introduction to Website Design and Development","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/871247242/149x198/efdffd8b1e/1748963433?v=1","title":"Introduction to Website Design and Development","type":"document","url":"https://www.scribd.com/document/871247242/Introduction-to-Website-Design-and-Development","views":"7"},"875850179":{"author":"wrq0049111","author_url":"https://www.scribd.com/user/822030542/wrq0049111","categories":[],"description":null,"id":875850179,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":80,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/875850179/298x396/256f51be24/1749882318?v=1","run_time":0,"short_title":"Introduction to HTML for Beginners_ , Covers HTML5, CSS3, Beginner_s Guide, 1ed","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/875850179/149x198/bf69a04cb4/1749882318?v=1","title":"Introduction to HTML for Beginners_ , Covers HTML5, CSS3, Beginner_s Guide, 1ed","type":"document","url":"https://www.scribd.com/document/875850179/Introduction-to-HTML-for-Beginners-Covers-HTML5-CSS3-Beginner-s-Guide-1ed","views":"4"}}},"renewalNagProps":null,"signupContext":null,"static":{"config":{"brand":"scribd","google":{"clientId":"491264573595-hs5hu9ijbfl9g6khnkn2retrfr6lcua7.apps.googleusercontent.com","sessionPath":"/open_id_connect/login"},"thirdPartyTags":{"googleAnalytics":{"account_id":"UA-443684-2","current_user":"false","facebook_user_context":"none"},"includeGoogleTagManager":true,"siftScience":{"user_id":null,"unique_browser_tracking_uuid":"97e99619-fdb2-4f62-b181-00fba7a9f136","sift_science_js_key":"cbcb9f556a"}}},"routes":{"accountPath":"L2FjY291bnQtc2V0dGluZ3M=\n","accountSettingsPath":"L2FjY291bnQtc2V0dGluZ3M=\n","androidStoreUrl":"aHR0cHM6Ly9wbGF5Lmdvb2dsZS5jb20vc3RvcmUvYXBwcy9kZXRhaWxzP2lk\nPWNvbS5zY3JpYmQuYXBwLnJlYWRlcjAuZG9jcw==\n","appPromoDeepLink":"aHR0cHM6Ly9zY3JpYmQucGFnZS5saW5rLz9hbXY9MTMuMTYmYXBuPWNvbS5z\nY3JpYmQuYXBwLnJlYWRlcjAuZG9jcyZpYmk9Y29tLnNjcmliZC5kb2NzJmlt\ndj0xMy4xNiZpc2k9NjQ0ODgwNzcxNCZsaW5rPWh0dHBzJTNBJTJGJTJGd3d3\nLnNjcmliZC5jb20lMkZkb2N1bWVudCUyRjg2NTQyODE3NSUyRndvcmQycGRm\nLUNoYXB0ZXItMi1CYXNpY3Mtb2YtSFRNTC0xNzQzMDYwNTk3ODEwJTNGcmVm\nZXJyZXIlM0R1dG1fY2FtcGFpZ24lM0Rkb2NfcGFnZSUyNnV0bV9zb3VyY2Ul\nM0Rkb2NfcGFnZSUyNnV0bV9tZWRpdW0lM0R3ZWImc3Q9d29yZDJwZGZfQ2hh\ncHRlciUyMDItJTIwQmFzaWNzJTIwb2YlMjAlMjBIVE1MXzE3NDMwNjA1OTc4\nMTAmc2k9aHR0cHM6Ly9pbWd2Mi0yLWYuc2NyaWJkYXNzZXRzLmNvbS9pbWcv\nZG9jdW1lbnQvODY1NDI4MTc1L29yaWdpbmFsLzIxNngyODcvOTVmMWFhNThk\nNy8xP3Y9MQ==\n","audiobooksAllCategoriesPath":"L2F1ZGlvYm9va3MvY2F0ZWdvcmllcw==\n","audiobooksPath":"L2F1ZGlvYm9va3M=\n","archivePlansCopyActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04NjU0\nMjgxNzUmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJjb3B5JTIyJTJDJTIybG9nZ2VkX2luJTIy\nJTNBZmFsc2UlMkMlMjJwbGF0Zm9ybSUyMiUzQSUyMndlYiUyMiU3RA==\n","archivePlansDownloadActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04NjU0\nMjgxNzUmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJkb3dubG9hZCUyMiUyQyUyMmxvZ2dlZF9p\nbiUyMiUzQWZhbHNlJTJDJTIycGxhdGZvcm0lMjIlM0ElMjJ3ZWIlMjIlN0Q=\n","bestsellersPath":"L2Jlc3RzZWxsZXJz\n","booksAllCategoriesPath":"L2Jvb2tzL2NhdGVnb3JpZXM=\n","booksPath":"L2Jvb2tz\n","documentsAllCategoriesPath":"L2RvY3MvY2F0ZWdvcmllcw==\n","documentsPath":"L2RvY3M=\n","facebookUrl":"aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL1NjcmliZC8=\n","homePath":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","instagramUrl":"aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9zY3JpYmQv\n","iosStoreUrl":"aHR0cHM6Ly9hcHBzLmFwcGxlLmNvbS91cy9hcHAvNjQ0ODgwNzcxND9tdD04\nJnB0PTI5ODUzNA==\n","languageModalPropsPath":"L2xhbmd1YWdlX21vZGFsX3Byb3Bz\n","logoutPath":"L2xvZ291dA==\n","magazinesAllCategoriesPath":"L21hZ2F6aW5lcy9jYXRlZ29yaWVz\n","magazinesPath":"L21hZ2F6aW5lcw==\n","myUploadsPath":"L3VwbG9hZHM=\n","oauthLoginUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9sb2dpbg==\n","oauthSignupUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9zaWdudXA=\n","oauthStartTrialUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9zaWdudXA/ZG9jX2lkPTg2\nNTQyODE3NQ==\n","originalsRoute":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vb3JpZ2luYWxz\n","paymentFixUrl":null,"pinterestUrl":"aHR0cHM6Ly93d3cucGludGVyZXN0LmNvbS9zY3JpYmQv\n","podcastsAllCategories":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cy9jYXRlZ29yaWVz\n","podcastsPath":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cw==\n","profilePath":"","progressiveProfileModalPropsPath":"L2RvYy1wYWdlL3Byb2dyZXNzaXZlLXByb2ZpbGUtbW9kYWwvODY1NDI4MTc1\n","progressiveProfileModalDismissPath":"L3Byb2dyZXNzaXZlX3Byb2ZpbGVfbW9kYWwvZGlzbWlzc19tb2RhbA==\n","rate":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yYXRpbmdzLmpzb24=\n","readingHistoryDataPath":"L3lvdXItYWNjb3VudC9yZWFkaW5nX2hpc3RvcnlfZGF0YQ==\n","referralsUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWZlcnJhbHM=\n","rootPath":"Lw==\n","savedPath":"L3NhdmVk\n","searchPath":"L3NlYXJjaA==\n","sheetMusicPath":"L3NoZWV0bXVzaWM=\n","statsPath":null,"subscribeUrl":"L2FyY2hpdmUvcG1wX2NoZWNrb3V0P2RvYz04NjU0MjgxNzUmZG9jX2lkPTg2\nNTQyODE3NSZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIycG1wJTIy\nJTJDJTIyYWN0aW9uJTIyJTNBJTIyc3RhcnRfdHJpYWwlMjIlMkMlMjJsb2dn\nZWRfaW4lMjIlM0FmYWxzZSUyQyUyMnBsYXRmb3JtJTIyJTNBJTIyd2ViJTIy\nJTJDJTIyYnJvd3Nlcl91dWlkJTIyJTNBJTIyOTdlOTk2MTktZmRiMi00ZjYy\nLWIxODEtMDBmYmE3YTlmMTM2JTIyJTdE\n","supportPath":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbQ==\n","twitterUrl":"aHR0cHM6Ly90d2l0dGVyLmNvbS9zY3JpYmQv\n","unpauseAccountUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hY2NvdW50L3VucGF1c2U/ZnJvbT1o\ndHRwcyUzQSUyRiUyRnd3dy5zY3JpYmQuY29tJTJGZG9jdW1lbnQlMkY4NjU0\nMjgxNzUlMkZ3b3JkMnBkZi1DaGFwdGVyLTItQmFzaWNzLW9mLUhUTUwtMTc0\nMzA2MDU5NzgxMA==\n","incentivizedUploadPath":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz04NjU0MjgxNzU=\n","uploadPath":"L3VwbG9hZC1kb2N1bWVudA==\n","webAnalyticsUrl":"aHR0cHM6Ly93YS5zY3JpYmQuY29t\n","whatIsScribdLandingPath":"L3doYXQtaXMtc2NyaWJk\n","whatIsEverandLandingPath":"L3doYXQtaXMtZXZlcmFuZA==\n","footerContentTypeRoutes":{"documents":"L2RvY3M=\n"},"aboutUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hYm91dA==\n","accessibilityUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5NTg2LUFjY2Vzc2liaWxpdHktTm90aWNl\n","adChoicesUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzY2\n","blogUrl":"aHR0cHM6Ly9ibG9nLnNjcmliZC5jb20v\n","careersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jYXJlZXJz\n","contactUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jb250YWN0\n","copyrightUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MDg2\n","everandBlogUrl":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vYmxvZw==\n","everandHostPath":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20=\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy9lbi11cw==\n","giftUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9naWZ0\n","pressUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9tZWRpYQ==\n","privacyUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wcml2YWN5\n","privacyRequestFormUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvYXJ0aWNsZXMvMzYwMDM4\nMDE2OTMxLVByaXZhY3ktUmlnaHRzLVJlcXVlc3QtRm9ybQ==\n","publishersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wdWJsaXNoZXJz\n","purchaseHelpUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MzA2\n","redeemUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWRlZW0=\n","simpleCancelUrl":"L3lvdXItYWNjb3VudC9jYW5jZWwtbm93\n","termsUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzI2LUdlbmVyYWwtVGVybXMtb2YtVXNl\n"}},"toolbar":{"search_path":"L2RvY3VtZW50cy9zZWFyY2g/YWxsb3dlZF9wYWdlcz0xJTJDMiUyQzMlMkM0\nJTJDNSUyQzYlMkM3JTJDOCUyQzklMkMxMCUyQzExJTJDMTIlMkMxMyUyQzE0\nJTJDMTUlMkMxNiUyQzE3JTJDMTglMkMxOSUyQzIwJTJDMjElMkMyMiUyQzIz\nJTJDMjQlMkMyNSUyQzI2JTJDMjclMkMyOCUyQzI5JTJDMzAlMkMzMSUyQzMy\nJTJDMzMlMkMzNCUyQzM1JTJDMzYlMkMzNyUyQzM4JTJDMzklMkM0MCUyQzQx\nJTJDNDIlMkM0MyUyQzQ0JTJDNDUlMkM0NiUyQzQ3JTJDNDglMkM0OSUyQzUw\nJTJDNTElMkM1MiUyQzUzJTJDNTQlMkM1NSUyQzU2JTJDNTclMkM1OCUyQzU5\nJTJDNjAlMkM2MSUyQzYyJmF1dGhfdG9rZW49dlg0VTRNNXRjTVNzbGJHMFkz\nM0lRUkxoVDBBJTNEJmF1dGhlbnRpY2l0eV90b2tlbj1BcGNIWGtpel9UTG4z\nZUJLeFlzV1JLWkVObWZqWGZhRlE0SlVTbzl5Y1lBTnpWdlZZbVlLUTQ2VjFl\nQTQxWGpUMWR0anNkV1RHVXlNTDF2dndBNnp0ZyZleHBpcmVzPTE3NTIzODAz\nMzUmd29yZERvY3VtZW50SWQ9ODY1NDI4MTc1JndvcmRVcGxvYWRJZD04ODg5\nOTc5NTg=\n","topic_search_path":"L2RvYy1wYWdlL3RvcGljX3NlYXJjaA==\n"},"user":{"browserUuid":"97e99619-fdb2-4f62-b181-00fba7a9f136","canExtendSubscription":null,"country":null,"currentPlanType":null,"emailHash":null,"hasPublishedDocuments":false,"id":null,"initials":"","isAborted":null,"isAdmin":null,"isBot":true,"isDunning":false,"isEligibleForFreeTrial":true,"isLoggedIn":false,"isMobile":false,"isPaused":false,"isSubscriber":false,"isTrialing":false,"isUnderDunningLock":false,"name":null,"personaIconRetinaUrl":null,"personaIconUrl":null,"showSimpleCancelOption":false},"wordDocument":{"ads_disabled":false,"archived":true,"author_name":"bereketsolomon861","copyright_name":"© All Rights Reserved","description":"This is about basics of html file for university studebts","downloadCount":0,"edit_path":null,"embed_modal_props_path":"/doc-page/embed-modal-props/865428175","extensions":["pdf"],"extracted_title":null,"flag_document_modal_props_path":"/doc-page/flag-document-modal-props/865428175","formats":[{"extension":"pdf","filesize":"4.67 MB"}],"generatedDescription":"Chapter Two discusses the fundamentals of web design and HTML, emphasizing the importance of creating web pages that are compatible across different browsers and devices. It outlines the steps for building a web page, including starting with content, structuring the document with HTML elements, and using CSS for styling. Additionally, it covers HTML tags, attributes, and the significance of semantic markup to enhance the meaning and structure of web content.","hasFreeAccessFromUploader":false,"hasScrambledFonts":false,"id":865428175,"image_url":"https://imgv2-1-f.scribdassets.com/img/document/865428175/149x198/17fac6e465/1747899152?v=1","in_library":false,"isDocumentOwner":false,"is_archive":true,"is_credit_restricted":false,"is_downloadable":true,"is_sheet_music":false,"is_view_restricted_archive":true,"isbn":null,"library_xhr_pending":false,"page_count":62,"page_dimensions":{"width":595,"height":841},"page_orientation":"portrait","publisher_info":{"is_author":false,"name":"bereketsolomon861","url":"https://www.scribd.com/user/866643046/bereketsolomon861"},"reportContentModalPropsPath":"/doc-page/report-content-modal-props/865428175","retina_image_url":"https://imgv2-2-f.scribdassets.com/img/document/865428175/298x396/5840be675e/1747899152?v=1","secret_password":null,"short_title":"word2pdf_Chapter 2- Basics of HTML_1743060597810","showFullDoc":false,"show_archive_paywall":true,"signup_context":null,"title":"word2pdf_Chapter 2- Basics of HTML_1743060597810","translation":{"original":null,"translations":[]},"type":"view_restricted","url":"https://www.scribd.com/document/865428175/word2pdf-Chapter-2-Basics-of-HTML-1743060597810","views":"7","doc_topics":null,"remainingCopyCredits":0},"X_Request_ID":"f6080ea7b60df3cfb0d48b40313484c2d8598c1c5da012a4a647e85bd7606698"}--></script></div></div><script type="text/javascript" src="/https/www.scribd.com/options/exposed_to_client.js"></script><script type="application/javascript">window._translations = JSON.parse("{\"en-US\":{\"translation\":{\");\\n this\":{\"nestingSuffix = iOpts\":{\"nestingSuffix ? regexEscape(iOpts\":{\"nestingSuffix) : iOpts\":{}}}},\"account_settings\":{\"facebook_connect\":{\"facebook\":\"Facebook\"},\"payment_card\":{\"apple_sub\":\"Apple Subscriptions\",\"card_num\":\"Card ending in {{card_number}}\",\"fortumo_bill\":\"Mobile Bill (Serviced by Fortumo)\",\"google_play\":\"Google Play Subscriptions\",\"no_card\":\"No card on file\",\"paypal\":\"PayPal: {{email}}\"},\"plans\":{\"plan_module\":{\"slash_month\":\"/month\",\"slash_year\":\"/year\"}},\"show\":{\"restart_membership\":\"Restart subscription\"},\"subscription_card\":{\"plan\":{\"annual\":\"Premium Annual\",\"lite\":\"Lite\",\"monthly\":\"Premium Monthly\"},\"unlocks_available\":\"{{count}} unlock available\",\"unlocks_available_plural\":\"{{count}} unlocks available\",\"unlocks_will_expire\":\"Unlocks will expire on {{date}}\"}},\"ai_assistant\":{\"ask_ai\":{\"cta_button_listen\":\"Listen\",\"cta_button_preview\":\"Preview\",\"cta_button_read\":\"Read\",\"cta_button_sample\":\"Sample\",\"cta_button_show_more\":\"Show more\",\"cta_button_view_titles\":\"View titles\",\"disclaimer_ask_ai_may_make_mistakes\":\"Ask v1.0 may make mistakes.\",\"error_messages\":\"Hmm, something went wrong. Please try again later.\",\"feedback_bad_response\":\"Bad Response\",\"feedback_good_response\":\"Good Response\",\"feedback_header\":\"Tell us more about your rating?\",\"feedback_success_description\":\"Your feedback is crucial in helping us improve our responses.\",\"feedback_success_header\":\"Thank you for your feedback\",\"feedback_tags_harmful_offensive\":\"Harmful or offensive\",\"feedback_tags_incorrect\":\"Incorrect or inaccurate\",\"feedback_tags_not_helpful\":\"Not helpful\",\"feedback_tags_not_what_meant\":\"Not what I meant\",\"feedback_tags_other\":\"Other\",\"feedback_tags_too_long\":\"Took too long\",\"greetings_subheading\":\"Ask me to recommend books or audiobooks - similar to reads you love, favorite categories, or with a specific plot or setting.\",\"save_button_remove_from_saved\":\"Remove from Saved\",\"save_button_save_for_later\":\"Save for later\",\"shared_highlight_can_help\":\"I can help!\",\"shared_highlight_looking_for\":\"Looking for\",\"shared_highlight_your_next_read\":\"your next read?\",\"suggestions_audiobooks_relationship\":\"I\'m seeking good audiobooks to help me improve my relationship with my girlfriend?\",\"suggestions_audiobooks_shoe_dog\":\"I’m looking for the audiobook Shoe Dog by Phil Knight?\",\"suggestions_audiobooks_successful_entrepreneurs\":\"Share inspirational audiobooks about successful entrepreneurs like The Spanx Story?\",\"suggestions_books_balance_technology_as_mom\":\"As a mom with kids below age 9, I need a book on how to balance technology and screen time for kids?\",\"suggestions_books_big_little_lies\":\"Domestic suspense books similar to Big Little Lies by Liane Moriarty?\",\"suggestions_books_children_books_science\":\"Children books about science that are appropriate for a 6 year old?\",\"suggestions_books_climate_change\":\"Can you suggest the top 3 books about climate change that I should read?\",\"suggestions_books_cookbooks\":\"Popular cookbooks for healthy diets?\",\"suggestions_books_creativity_inc\":\"Any books similar to Creativity Inc by Ed Catmull?\",\"suggestions_books_fiction_books\":\"Are there any fiction books about people with schizophrenia?\",\"suggestions_books_financial_independence\":\"Books about financial independence like Pathfinders by JL Collins?\",\"suggestions_books_finding_love_againa\":\"I want to read a good story about finding love again after life setbacks?\",\"suggestions_books_glad_my_mom_died\":\"Do you have I’m Glad My Mom Died?\",\"suggestions_books_inspire_me_with_books\":\"I want to be inspired, what books do you recommend?\",\"suggestions_books_leadership_skills\":\"Good books on leadership skills for women similar to Career Forward by Puma?\",\"suggestions_books_light_funnny_lift_mood\":\"Any light and funny books to lift my mood?\",\"suggestions_books_make_me_cry_ugly\":\"Looking for books that will make me ugly cry?\",\"suggestions_books_medicine_and_disease\":\"Do you have books about medicine and disease similar to Being Mortal by Gawande?\",\"suggestions_books_memoirs_not_business_leaders\":\"Looking for good memoirs but not about business leaders?\",\"suggestions_books_memoirs_successful_athletes\":\"Share memoirs about successful athletes that would inspire young kids to work hard?\",\"suggestions_books_millionaire_next_door\":\"Books like The Millionaire Next Door that are good?\",\"suggestions_books_no_weak_female_characters\":\"I don’t like books with weak female characters. Can you suggest novels with strong, empowered women?\",\"suggestions_books_real_estate_investor\":\"I want to learn how to be a real estate investor - what books should I read?\",\"suggestions_books_self_help_books\":\"I want self-help books not written by Dale Carnegie?\",\"suggestions_books_sets_india\":\"Can you recommend books set in India?\",\"suggestions_books_story_at_sea\":\"Books where the story happens at sea?\",\"suggestions_books_suggestions_about_cats\":\"My daughter is 12 yrs old and also loves cats. Any suggestions?\",\"suggestions_books_underdog_sports_teams\":\"Interested in books about underdog sports teams similar to The Boys in the Boat by Brown?\",\"suggestions_books_walter_isaacson\":\"Do you have books by Walter Isaacson?\",\"suggestions_books_written_by_sarah_maas\":\"Show me books written by Sarah Maas?\",\"suggestions_deeply_emotional_memoir\":\"I want a deeply emotional memoir that explores overcoming adversity - any ideas?\",\"suggestions_fiction_novels_medival_europe\":\"Can you recommend any fiction novels set in Medieval Europe?\",\"suggestions_funny_romance_books\":\"I need some cheering up, can you recommend some super funny laugh-out-loud romance books for me?\",\"suggestions_good_audiobook_set_rome\":\"Looking for a good audiobook set in ancient Rome?\",\"suggestions_mystery_novel_female_detective\":\"Can you recommend a mystery novel set in the 1920s that features a female detective?\",\"suggestions_romance_lovers_plot\":\"Give me a spicy romance book with an enemies to lovers plot?\",\"suggestions_romance_novel_world_war\":\"Can you recommend a romance novel set during World War II?\",\"suggestions_self_improvement_audiobooks\":\"I’m looking for inspiration to stop procrastinating. Can you recommend some self-improvement audiobooks on this topic?\",\"suggestions_similar_achilles_madeline_miller\":\"I enjoyed Song of Achilles by Madeline Miller. Suggest another retelling of a myth or legend?\",\"suggestions_similar_author_fantasy_series_george_rr_martin\":\"Recommend a fantasy series similar to A Song of Ice and Fire by George RR Martin?\",\"suggestions_similar_author_psychological_thrillers_gillian_flynn\":\"Love psychological thrillers by Gillian Flynn - what similar authors should I check out?\",\"suggestions_similar_books_chris_voss\":\"I liked Never Split the Difference by Chris Voss, recommend similar books to me?\",\"suggestions_similar_books_crawdads_sing\":\"I loved Where the Crawdads Sing by Delia Owens - what else should I read?\",\"suggestions_similar_books_female_main_character\":\"I\'m looking for books set in Europe with a female main character?\",\"suggestions_similar_books_lord_of_rings\":\"I loved Lord of the Rings, can you recommend something similar?\",\"suggestions_similar_books_many_lives_mama_love\":\"Books similar to The Many Lives of Mama Love?\",\"suggestions_similar_books_marie_kondo\":\"I\'m a fan of Marie Kondo and her approach to simplifying life. What books by similar authors would you recommend?\",\"suggestions_similar_plot_twists\":\"I don’t like predictable endings, can you find a couple of books with good plot twists for me?\",\"suggestions_thriller_unexpected_plot_twists\":\"I’m looking for a thriller with unexpected plot twists and a dark setting?\",\"suggestions_true_story_book_recommendations\":\"Any true story book recommendations?\",\"text_input_ask_follow_up\":\"Ask a follow-up\",\"text_input_discover_next_read\":\"Discover your next read\",\"text_input_label\":\"Send Message\",\"thumbs_down_other_header\":\"Provide additional feedback\",\"thumbs_down_submit_button\":\"Submit Feedback\"},\"ask_ai_modal\":{\"advanced_search\":\"Advanced Search\",\"copy_and_paste\":\"Copy \\u0026 paste text and images from any document\",\"download_documents\":\"Download documents\",\"free_trial\":\"Get this feature with a free trial\",\"start_free_trial\":\"Start {{numberOfDays}} day free trial\",\"start_free_trial_unlimited_access_html\":\"Start a 30 day free trial to \\u003cstrong\\u003eget unlimited access to Ask AI,\\u003c/strong\\u003e plus:\",\"summary\":\"Ask AI gives you instant answers and helps you summarize the contents of the document faster\"}},\"bestsellers\":{\"promo\":{\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling titles when you subscribe\"}},\"books\":{\"epub\":{\"banners\":{\"enjoying_preview_update_payment\":\"Your next unlock will be available after you update your payment information.\",\"enjoying_preview_update_payment_upgrade\":\"Update payment information to upgrade to Plus\"}}},\"browse\":{\"promo\":{\"everand_also_available_on_mobile_devices\":\"Everand is also available for your mobile devices.\"}},\"category\":{\"documents\":\"{{category}} Documents\"},\"change_plans_page\":{\"plan_module\":{\"most_popular\":\"Most Popular\"}},\"chrome\":{\"flash\":{\"close_notification\":\"Close notification\"},\"renewal_nag\":{\"click_here_to_become_a_member\":\"Click here to become a member\",\"click_here_to_renew_it\":\"Click here to renew it\",\"click_here_to_resume_it\":\"Click here to resume it\",\"click_here_to_update_it\":\"Click here to update it\",\"resume_membership\":\"Resume membership\",\"update_payment\":\"Update Payment\",\"you_canceled_your_free_trial\":\"You canceled your free trial.\",\"your_credit_card_information_is_invalid_\":\"Your credit card information is invalid.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\",\"your_membership_is_paused_until_paused_until_date\":\"Your membership is paused until {{paused_until_date}}.\",\"your_paypal_information_is_invalid\":\"Your Paypal information is invalid.\",\"your_scribd_gift_membership_has_ended\":\"Your Scribd gift membership has ended.\",\"your_scribd_membership_has_expired\":\"Your Scribd membership has expired.\",\"your_scribd_membership_was_canceled\":\"Your Scribd membership was canceled.\"}},\"common\":{\"later\":\"Later\",\"update_payment\":\"Update payment\"},\"content_lengths\":{\"listening_minutes\":\"{{minutes}} min listen\",\"reading_minutes\":\"{{minutes}} min read\"},\"content_preview\":{\"available_on\":\"Available on {{date}}\",\"flags\":{\"expiring_soon\":\"Leaving soon\",\"geo_restricted\":\"Unavailable\",\"not_available\":\"Unavailable\",\"sample\":\"Sample\",\"throttled\":\"Available soon\"},\"formats\":{\"also_available_list_view\":\"Also available as \\u003ca href={{url}} class=\'also_available\'\\u003e{{content_type}}\\u003c/a\\u003e\"},\"geo_restricted\":\"Unavailable in your country\",\"reviews\":{\"delete_rating_and_review\":\"Delete this rating and review?\",\"delete_warning\":\"This action cannot be undone.\",\"rating_and_review_deleted\":\"Rating and review deleted\"},\"save\":{\"add\":\"Save for later\",\"remove\":\"Remove from Saved\"},\"share\":\"Share\",\"social_media_share\":{\"email\":\"Email\",\"pinterest\":\"Pinterest\",\"twitter\":\"Twitter\"},\"social_media_share_modal\":{\"linked_copied\":\"Link copied\"},\"unavailable\":\"Currently unavailable\",\"view_titles_in_series\":\"View titles in series\"},\"content_types\":{\"article\":\"Article\",\"audiobook\":\"Audiobook\",\"audiobook_series\":\"Audiobook series\",\"audiobooks\":\"Audiobooks\",\"books\":\"Books\",\"document\":\"Document\",\"documents\":\"Documents\",\"ebook\":\"Ebook\",\"ebook_series\":\"Ebook series\",\"ebooks\":\"Ebooks\",\"magazine\":\"Magazine\",\"magazines\":\"Magazines\",\"podcast\":\"Podcast\",\"podcast_episode\":\"Podcast episode\",\"podcasts\":\"Podcasts\",\"sheet_music\":\"Sheet music\",\"song\":\"Song\",\"topics\":\"Topics\"},\"doc_page\":{\"account_creation\":{\"get_instant_access_with_free_account\":\"Get instant access to this document and millions more with a free account.\",\"to_continue_reading_please_sign_in\":\"To continue reading, please sign in\"},\"ad_label\":{\"ad_info\":{\"description\":\"We use ads to keep content free and accessible for everyone. You can remove them by \\u003ca href=\'{{signupUrl}}\'\\u003esigning up\\u003c/a\\u003e for a Scribd subscription.\",\"dunning_description\":\"We use ads to keep content free and accessible for everyone. You can remove them by \\u003ca href=\'{{updateUrl}}\'\\u003eupdating your payment\\u003c/a\\u003e.\"}},\"ai_actions\":{\"bullet_points\":\"Bullet Points\",\"define\":\"Define\",\"elaborate\":\"Elaborate\",\"explain\":\"Explain\",\"give_example\":\"Give Example\",\"key_insights\":\"Key Insights\",\"learn_more\":\"Learn More\",\"outline\":\"Outline\",\"painted_door_modal\":{\"feature_not_ready\":\"This feature is not quite ready\",\"we_are_working_hard\":\"We\'re working hard to introduce advanced reading, summarization, and document analysis tools to improve your experience. We hope to share them with you soon.\"},\"rephrase\":\"Rephrase\",\"shorten\":\"Shorten\",\"simplify\":\"Simplify\",\"summarize\":\"Summarize\",\"translate\":\"Translate\"},\"ai_enhanced_tag\":{\"ai_enhanced\":\"AI-enhanced\",\"ai_enhanced_document\":\"AI-enhanced document\",\"ai_translated_document\":\"AI-translated document\",\"description\":\"AI-enhanced description\",\"description_tooltip\":\"Leveraging AI technology, we\'ve optimized the description for improved clarity.\",\"title\":\"AI-enhanced title\",\"title_and_description\":\"AI-enhanced title and description\",\"title_and_description_tooltip\":\"Leveraging AI technology, we\'ve optimized the title and description for improved clarity.\",\"title_tooltip\":\"Leveraging AI technology, we\'ve optimized the title for improved clarity.\"},\"annotation_popover\":{\"add_note\":\"Add note\",\"highlight\":\"Highlight\",\"share_quote\":\"Share quote\"},\"app_promo\":{\"millions_of_documents\":\"Millions of documents at your fingertips\"},\"app_promo_interstitial\":{\"continue_for_free\":\"Continue for free\"},\"blur_promo\":{\"become_member_for_full_access\":\"Become a Scribd member for full access.\",\"read_and_download_full_documents\":\"Read and download full documents.\",\"skip_ad\":\"Skip ad\",\"subscribe_now\":\"Subscribe Now\",\"subscribe_with_a_free_trial\":\"Subscribe with a free trial\",\"trial_duration\":{\"start_your_trial\":\"Start your {{trialDuration}} day free trial\"},\"unlock_next_pages_after_an_ad\":\"Unlock the next {{count}} page after an ad\",\"unlock_next_pages_after_an_ad_plural\":\"Unlock the next {{count}} pages after an ad\",\"unlock_this_document\":\"Unlock this document\",\"unlock_this_document_after_an_ad\":\"Unlock this document after an ad\",\"unlock_this_page_after_an_ad\":\"Unlock this page after an ad\",\"upload_a_doc_to_download_or_sub\":\"Upload a document to download this document or subscribe to read and download.\",\"upload_to_download\":\"Upload to download\"},\"description_modal\":{\"description\":\"Description\"},\"doc_chat_additional_feedback\":{\"heading\":\"Provide additional feedback\",\"placeholder\":\"What are your thoughts on the response? How could it be improved?\"},\"doc_chat_down_vote_feedback\":{\"not_factually_correct\":\"Not factually correct\",\"offensive_unsafe\":\"Offensive/Unsafe\",\"other\":\"Other\",\"submit\":\"Submit Feedback\"},\"doc_chat_feedback\":{\"down_vote_question_heading\":\"Why did you choose this rating?\",\"thank_you_response\":\"Your feedback is valuable and helps us improve our AI responses.\",\"thank_you_response_heading\":\"Thanks so much for your feedback\"},\"doc_chat_settings\":{\"clear_history\":\"Clear History\",\"faq\":\"FAQ\"},\"doc_chat_usage\":{\"exceed_warning\":\"You’ve reached your monthly limit of {{count}} prompts. Thank you for being so actively engaged with DocTalk beta. Your prompt limit will reset next month!\",\"limit_reminder\":\"Wow, you’ve reached {{count}} prompts! As part of our DocTalk beta program, you have {{left}} prompts left. Your feedback is appreciated as we refine this feature.\"},\"doc_reader_toolbar\":{\"downloaded_number_times\":\"Downloaded {{number}} times\"},\"doc_summary\":{\"number_downloads\":\"{{number}} downloads\"},\"document_outline\":{\"document_outline\":\"Document outline\",\"document_thumbnails\":\"Document thumbnails\"},\"download_as_formats_or_read_online\":\"Download as {{formats}} or read online on Scribd\",\"download_modal\":{\"explore_top_category_documents_next\":\"Explore top {{category}} documents next\",\"no_category_explore_these_top\":\"Explore these top related documents next\"},\"download_to_read_ad_free\":\"Download to read ad-free\",\"embed_modal\":{\"title\":\"Embed document\"},\"fallback_ad\":{\"millions_of_documents_ad_free\":\"Millions of documents at your fingertips, ad-free\"},\"fixed_viewport_bottom_components\":{\"check_out_these_free_titles\":\"Check out these free titles\"},\"flash\":{\"rating_not_saved_try_again\":\"Rating not saved, please try again\"},\"get_scribd_without_ads\":\"Get Scribd without ads.\",\"incentivized_upload\":{\"to_access_this_document_trial_duration\":\"To access this document, upload one of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\",\"to_access_this_document_trial_duration_plural\":\"To access this document, upload {{count}} of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\"},\"key_topics\":{\"ai_summary\":\"AI summary\",\"copy\":{\"excerpt\":\"Excerpt\",\"excerpts_about\":\"Excerpts about\"},\"copy_all_excerpts\":\"Copy all excerpts\",\"copy_excerpt\":\"Copy excerpt\",\"copy_toast_success\":\"Excerpt copied to clipboard.\",\"copy_toast_success_plural\":\"Excerpts copied to clipboard.\",\"explain\":\"Explain\",\"explain_more\":\"Explain more\",\"keyword_match_results\":\"Keyword match\",\"num_excerpts\":\"1 excerpt\",\"num_excerpts_plural\":\"{{count}} excerpts\",\"num_key_excerpts\":\"1 key excerpt\",\"num_key_excerpts_plural\":\"{{count}} key excerpts\",\"topics_results\":\"Topics\"},\"metadata\":{\"description\":{\"copyright_awareness\":\"We take content rights seriously. If you suspect this is your content, \\u003ca href={{href}}\\u003eclaim it here\\u003c/a\\u003e.\",\"original_description\":\"Original Description\"},\"license\":\"License\",\"overview\":\"Overview\"},\"mobile_metadata\":{\"collapse_full_title\":\"Hide full title\",\"expand_full_title\":\"Show full title\"},\"modals\":{\"mobile_share\":{\"share_document\":\"Share document\"},\"more_options\":{\"is_this_document_useful\":\"Is this document useful?\"}},\"more_options\":\"More options\",\"mouse_menu\":{\"copy_page_text\":\"Copy page text\",\"copy_text\":\"Copy text\",\"copy_text_unavailable\":\"Copy text unavailable\",\"copy_text_unavailable_on_this_page\":\"Copy text unavailable on this page\"},\"note\":\"Note\",\"page\":{\"preferred_language_set_to_url_params_language_settings_changed\":\"Preferred language set to {{url_params_language_settings_changed}}\"},\"ratings\":{\"mark_as_not_useful\":\"Mark this document as not useful\",\"mark_as_useful\":\"Mark this document as useful\",\"no_ratings\":\"0 ratings\",\"no_ratings_yet\":\"No ratings yet\",\"num_votes\":\"({{count, locale}} vote)\",\"num_votes_plural\":\"({{count, locale}} votes)\",\"page_count\":\"{{count, locale}} page\",\"page_count_plural\":\"{{count, locale}} pages\",\"percent_found_document_not_useful\":\"{{percentage}}% found this document not useful\",\"percent_found_document_useful\":\"{{percentage}}% found this document useful\",\"press_again_undo\":\"Press again to undo.\",\"sign_up_to_rate_this_title\":\"Sign up to rate this title\",\"you_marked_as_useful\":\"You marked this document as useful\"},\"read_this_document_in_other_languages\":\"Read this document in other languages\",\"recommender_list\":{\"audiobook\":\"audiobook\",\"book\":\"book\",\"might_also_like\":\"You might also like\",\"show_more\":\"Show more\"},\"related_documents\":\"Related documents\",\"report_content_modal\":{\"button_name\":\"Report\",\"category_error_flash\":\"Select a category to submit your report\",\"copyright_awareness\":\"If you are the copyright owner of this document or someone authorized to act on a copyright owner’s behalf, please use the \\u003ca href={{reportLink}}\\u003eDMCA form\\u003c/a\\u003e to report infringement.\",\"copyright_infringement\":\"Copyright infringement\",\"cta\":{\"cancel\":\"Cancel\",\"submit\":\"Submit\"},\"document_has_been_reported\":\"Document has been reported.\",\"problem_submitting_report\":\"We encountered a problem submitting your report. Please try again.\",\"report_an_issue\":\"Report an issue\",\"select_an_option\":\"Select an option...\",\"sub_type\":{\"academic_dishonesty\":\"Academic Dishonesty\",\"child_privacy\":\"Child Privacy\",\"child_sexual_abuse\":\"Child Sexual Abuse\",\"dangerous_products_services\":\"Dangerous Products/Services\",\"general_privacy\":\"General Privacy\",\"inciting_violence_or_hatred\":\"Inciting Violence or Hatred\",\"ip_infringement_copyright\":\"IP Infringement (copyright)\",\"ip_infringement_non_copyright\":\"IP Infringement (non-copyright)\",\"minor_exploitation\":\"Minor Exploitation\",\"non_violent_offenses\":\"Non-violent Offenses\",\"other\":\"Other\",\"self_harm\":\"Self-harm\",\"sexual_offenses\":\"Sexual Offenses\",\"sexually_explicit\":\"Sexually Explicit\",\"shocking_or_disturbing\":\"Shocking or Disturbing\",\"spreading_false_information\":\"Spreading False Information\",\"terrorism\":\"Terrorism\",\"threatening_behavior\":\"Threatening Behavior\",\"violent_offenses\":\"Violent Offenses\"},\"subcategory_error_flash\":\"Select a sub-category to submit your report\",\"title\":\"Report Content\",\"type\":{\"dangerous_and_derogatory\":\"Dangerous \\u0026 Derogatory\",\"dangerous_and_derogatory_tooltip\":\"Content that encourages harmful, threatening, or hateful behavior.\",\"deceptive_and_fraudulent\":\"Deceptive \\u0026 Fraudulent\",\"deceptive_and_fraudulent_tooltip\":\"Content that intentionally misleads, deceives, or engages in fraudulent activities.\",\"explicit\":\"Explicit\",\"explicit_tooltip\":\"Content that is graphic, offensive, or disturbing.\",\"illegal\":\"Illegal\",\"illegal_tooltip\":\"Content that breaks the law or promotes illegal activities.\",\"intellectual_property\":\"Intellectual Property\",\"intellectual_property_tooltip\":\"Content that uses someone else\'s protected work without permission.\",\"low_quality\":\"Low quality\",\"low_quality_tooltip\":\"Content that fails to meet minimum standards for clarity, relevance, or completeness.\",\"privacy\":\"Privacy\",\"privacy_tooltip\":\"Content that misuses personal information.\",\"spam\":\"Spam\",\"spam_tooltip\":\"Unsolicited and repetitive content that disrupts your experience.\"}},\"share\":{\"copy_link\":\"Copy link\",\"link_copied\":\"Link copied!\",\"share_on_facebook\":\"Share on Facebook\",\"share_on_linkedin\":\"Share on LinkedIn\",\"share_via_email\":\"Share via email\",\"unable_to_copy_link\":\"Unable to copy link\"},\"share_drawer\":{\"copy_link\":\"Copy Link\"},\"share_quote\":{\"page_number\":\"Page {{page}}\"},\"sharing_buttons\":{\"link_copied_private_document\":\"Link Copied! \\u003cspan class=\\\"link_copied_private_doc\\\"\\u003eNote: Sharing a public link to a document marked private will allow others to view it.\\u003c/span\\u003e\",\"not_supported_for_private_documents\":\"This feature is not supported for private documents. If you want to share, select Copy Link, and send the link to others.\"},\"this_document_available_in_languages\":\"This document is available in the following languages:\",\"toast\":{\"copying_text_disabled\":\"Copying text from this document is disabled.\",\"copying_text_success\":\"Text copied to clipboard.\"},\"toolbar\":{\"document_search\":{\"find_in_document\":\"Find in document\"},\"download\":\"Download\",\"download_now\":\"Download now\",\"find_in_pdf\":\"Find in PDF\"},\"translate\":\"Translate\",\"translate_document\":\"Translate Document\",\"view_original_document_in_language\":\"View original document in {{language}}\"},\"everand\":{\"bestsellers\":{\"promo\":{\"enjoy_bestselling_audiobook_titles_when_subscribed\":\"Enjoy bestselling audiobooks when you subscribe\",\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling ebooks when you subscribe\"}},\"browse_page\":{\"promo\":{\"books_audiobooks_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more, from {{price}}/month. Cancel anytime.\",\"instant_access_and_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more for just {{price}}/month. Cancel anytime.\"}},\"lists\":{\"faq_message_html\":\"We\'ve made important changes to the list experience. To learn more, \\u003ca href={{faqUrl}} target=\\\"_blank\\\"\\u003evisit the FAQs\\u003c/a\\u003e.\"},\"megamenu\":{\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Everand?\"}},\"modal\":{\"opt_in\":{\"continue_to_everand\":\"Continue to Everand\",\"upcoming_releases_curated_lists_to_your_inbox\":\"Find out about upcoming releases and exclusive originals, plus get curated lists and special offers sent directly to your inbox.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Send me email updates from Everand\",\"welcome_to_everand\":\"Welcome to Everand!\"},\"upsell\":{\"get_the_most_out_of_everand\":\"Get the most out of Everand\",\"unlock_full_access_discover_millions\":\"Unlock full access to the world\'s most fascinating digital library. Discover millions of ebooks, audiobooks, magazines, and more.\"}},\"shared\":{\"cross_link_message\":\"From Everand\",\"footer\":{\"about_scribd\":\"About Everand\",\"everand_-_download_on_the_app_store\":\"Everand - Download on the App Store\",\"everand_-_get_it_on_google_play\":\"Everand - Get it on Google Play\",\"everand_-_get_it_on_kindle_fire\":\"Everand for Kindle Fire\",\"scan_to_download\":\"Scan to download\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Everand on Facebook\",\"scribd_on_instagram_aria_label\":\"Everand on Instagram\",\"scribd_on_pinterest_aria_label\":\"Everand on Pinterest\",\"scribd_on_twitter_aria_label\":\"Everand on Twitter\"}}},\"everand_pay_now_modal\":{\"0_unlocks_remain\":\"0 unlocks remaining in your trial\",\"continue_with_standard\":\"Continue with 1 unlock per month on the Standard plan, or upgrade your plan to get more unlocks.\",\"downgrade_cta\":\"Downgrade to Standard\",\"downgrade_plus\":\"Downgrade to Plus\",\"get_unlocks_today\":\"Get {{count}} unlock today, renews monthly\",\"get_unlocks_today_plural\":\"Get {{count}} unlocks today, renews monthly\",\"plus_trial_desc\":\"Subscribe today to get more unlocks and continue enjoying our bestselling ebooks and audiobooks.\",\"standard_trial_desc\":\"Get 3 unlocks per month with the Plus plan, or continue with 1 unlock per month on the Standard plan.\",\"subscribe_deluxe\":\"Subscribe to Deluxe\",\"subscription_disclaimer_plus_tax_html\":\"Your {{plan}} plan of {{count}} unlock per month automatically renews for {{price}}/month (plus tax), billed by {{local_entity}}, until you cancel. Cancel anytime in your \\u003ca class=\'account\' href=\'{{account_url}}\' target=\'_blank\'\\u003eAccount Settings\\u003c/a\\u003e. See Scribd’s \\u003ca class=\'terms\' href=\'{{terms_url}}\' target=\'_blank\'\\u003eterms of use\\u003c/a\\u003e and \\u003ca class=\'privacy\' href=\'{{privacy_url}}\' target=\'_blank\'\\u003eprivacy policy\\u003c/a\\u003e for more information.\",\"subscription_disclaimer_plus_tax_html_plural\":\"Your {{plan}} plan of {{count}} unlocks per month automatically renews for {{price}}/month (plus tax), billed by {{local_entity}}, until you cancel. Cancel anytime in your \\u003ca class=\'account\' href=\'{{account_url}}\' target=\'_blank\'\\u003eAccount Settings\\u003c/a\\u003e. See Scribd’s \\u003ca class=\'terms\' href=\'{{terms_url}}\' target=\'_blank\'\\u003eterms of use\\u003c/a\\u003e and \\u003ca class=\'privacy\' href=\'{{privacy_url}}\' target=\'_blank\'\\u003eprivacy policy\\u003c/a\\u003e for more information.\",\"title\":\"Start subscription to unlock title\",\"unlocks_and_price\":\"{{count}} unlock • {{price}}\",\"unlocks_and_price_plural\":\"{{count}} unlocks • {{price}}\",\"upgrade_deluxe\":\"Upgrade to Deluxe\",\"upgrade_to_get_unlocks\":\"Upgrade to get {{unlocks}} unlocks today, renews monthly\"},\"everand_unlock_modal\":{\"get_the_best_experience\":\"Get the best Everand experience in the app. Scan the code to download.\"},\"explore\":{\"download_app_banner\":{\"everand_is_best_in_the_app\":\"Everand is best in the app\"}},\"get_app_modal\":{\"link_sent_email\":\"Link sent! Please check your email.\"},\"helpers\":{\"document_meta_tags\":{\"scribd_is_the_world_s_largest_social\":\"Scribd is the world\'s largest social reading and publishing site.\"}},\"home\":{\"logged_in\":{\"content_quickview\":{\"also_available_as_an_audiobook\":\"Also available as an audiobook\",\"also_available_as_an_ebook\":\"Also available as an ebook\",\"byline\":{\"narrated_by\":\"narrated by\"},\"close\":\"Close\",\"count_titles\":\"{{count}} title\",\"count_titles_plural\":\"{{count}} titles\",\"go_to_content_type_version\":\"Go to {{content_type}} version\",\"loading\":\"Loading...\",\"more_about_this_episode\":\"More about this episode\",\"more_about_this_issue\":\"More about this issue\",\"more_about_this_series\":\"More about this series\",\"more_about_this_summary\":\"More about this summary\",\"oops_something_went_wrong\":\"Oops, something went wrong\",\"view_all_articles\":\"View all articles\",\"view_all_episodes\":\"View all episodes\",\"view_the_full_title_details\":\"View the full title details\"}}},\"landing_pages\":{\"feed\":{\"view_more_info\":\"View more info\"}},\"megamenu\":{\"documents\":{\"all_documents\":\"All Documents\"},\"hambur_menu\":{\"get_our_free_apps\":\"Get our free apps\"},\"hamburger_menu\":{\"close_menu\":\"Close menu\",\"sign_in_to_your_everand_account\":\"Sign in to your Everand account\",\"sign_in_to_your_scribd_account\":\"Sign in to your Scribd account\",\"welcome\":\"Welcome!\"},\"language\":{\"cancel\":\"Cancel\",\"change_language\":\"Change Language\"},\"language_links\":{\"learn_more\":\"Learn more\"},\"language_picker_dropdown\":{\"language\":\"Language\",\"preferred_language\":\"Preferred Language\"},\"logged_out\":{\"user_menu\":{\"welcome_to_everand\":\"Welcome to Everand!\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"navigation\":{\"categories\":\"Categories\",\"explore_content_type\":\"Explore {{content_type}}\",\"opens_navigation_menu\":\"Open navigation menu\"},\"search_bar\":{\"clear_search\":\"Clear search\",\"close_suggestions\":\"Close suggestions\",\"no_results_found\":\"No search results.\",\"num_results_are_available\":\"{{num_results}} result(s) are available, use up and down arrow keys to navigate.\",\"recent_searches\":\"Recent searches\",\"search\":\"Search\"},\"top_bar\":{\"upload\":\"Upload\"},\"upload\":{\"upload_header\":\"Upload\"},\"user_menu\":{\"document_stats\":\"Document stats\",\"document_uploads\":\"Document uploads\",\"faq_and_support\":\"FAQ and support\",\"hi_name\":\"Hi {{name}}!\",\"invite_friends\":\"Invite friends\",\"language\":\"Language ({{current_language}})\",\"public_profile\":\"Public profile\",\"read_for_free\":\"Read for free\",\"visually_hidden_user_settings\":\"User Settings\",\"your_account\":\"Your account\"},\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Scribd?\"}},\"modals\":{\"add_to_list\":{\"save\":\"Save to list\",\"title\":\"Add to list\"},\"confirm_delete_review\":{\"title\":\"Delete your review and rating?\"},\"confirm_unsave_item\":{\"content\":\"Are you sure you want to remove this title from Saved Library and any saved lists?\",\"header\":\"Remove title\",\"title\":\"Remove title from Saved Library and any saved lists?\"},\"confirm_unsave_item_in_list\":{\"remove_from_your_lists\":\"Remove from your lists?\",\"removing_from_saved\":\"Removing from Saved will also delete the title from your lists.\",\"removing_this_title_from_saved\":\"Removing this title from Saved will also remove it from your lists.\",\"title\":\"This title is also in a list.\"},\"create_list\":{\"create_list\":\"Create list\",\"failed_to_create_try_again\":\"Failed to create list, please try again\",\"input_description\":{\"privacy_type\":\"No one except you can view this list. Sharing will be disabled.\"},\"input_label\":{\"name\":\"What would you like to name this list?\",\"privacy_type\":\"Make list private\"},\"title\":\"New List\",\"validation_errors\":{\"name\":\"Please enter a list name\"}},\"language_picker\":{\"language_options\":\"Language Options\",\"select_preferred_language\":\"Select your preferred language\",\"translate_and_tailor\":\"We’ll translate site navigation and tailor your personal recommendations where possible to match your preferred language selection.\",\"translate_to_match\":\"We’ll translate site navigation to match your preferred language selection.\"},\"lockshockroadblock\":{\"problem_with_your_last_payment\":\"Problem with your last payment\",\"update_your_payment_to_continue\":\"Update your payment to continue\",\"we_had_an_issue_with_your_last_payment\":\"We had an issue with your last payment. Update your payment info to continue.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\"}},\"onboarding_modal\":{\"cta\":{\"get_started\":\"Get started\",\"next\":\"Next\",\"see_whats\":\"See what’s new\",\"start_reading\":\"Start reading!\"},\"subtitle\":{\"all_unlocks_renew\":\"Each unlock gives you access to a title from our premium catalog. Unlocks renew monthly. Unused unlocks do not roll over. \",\"lets_go\":\"Let’s go over a few things that have changed.\",\"look_for_titles\":\"Out of unlocks? No problem! Just look for the “unlimited” label to keep on reading.\",\"not_sure_if\":\"Not sure if you’re ready to unlock a premium ebook or audiobook? Save it for later or preview it for a closer look.\",\"scan_the_code_to_download\":\"Your favorite stories go wherever you do, even offline. Scan the code to get the app.\",\"weve_already_unlocked\":\"Enjoy the books you’ve already read — no unlocks needed.\",\"your_favorite_stories\":\"Your favorite stories go wherever you do, even offline.\",\"your_world_of\":\"Your world of stories starts here.\"},\"title\":{\"anytime_anywhere\":\"Anytime, anywhere\",\"no_need_to\":\"No need to use unlocks on titles you’ve already read\",\"out_of_unlocks\":\"Always more to enjoy\",\"preview_any\":\"Preview any title first\",\"use_your_unlocks\":\"Unlock premium titles\",\"welcome_everand\":\"Welcome to Everand!\",\"your_library\":\"Your library just got bigger\"}},\"page_gate_modal\":{\"check_you_email\":{\"check_your_email\":\"Check your email\"},\"check_your_email\":{\"change_email\":\"Not the correct email?\",\"didnt_receive\":\"Didn\'t receive an email? Check your spam folder, or\",\"email_not_verified_verify_to_continue\":\"Email not verified. Please verify your email to continue.\",\"i_have_verified_my_email\":\"I\'ve verified my email\",\"logout_login_url\":\"Use a different email address\",\"send_again\":\"send again.\",\"to_protect_your_account_html\":\"To protect your account, we\'ve sent a verification email to \\u003cstrong\\u003e{{email}}\\u003c/strong\\u003e. Please click the link in that email to verify your identity. To learn more, please visit our \\u003ca href=\\\"{{support_url}}\\\" class=\\\"faq_link\\\" target=\\\"_blank\\\"\\u003eFAQs\\u003c/a\\u003e.\",\"verify_email_before_continuing\":\"Please verify your email before continuing.\"}},\"pdfs\":{\"doc_search\":{\"page\":\"page\"},\"lightboxes\":{\"download_lightbox\":{\"download_document\":\"Download document\",\"resume_membership\":\"Resume Membership\",\"resuming\":\"Resuming\"},\"embed_lightbox\":{\"autosize\":\"Autosize\",\"beginning_of_document\":\"Beginning of document\",\"copy_link\":\"Copy Link\",\"current_page\":\"Current page\",\"custom\":\"Custom\",\"customization_options_available_below\":\"Customization options available below\",\"embed_this_in_your_website\":\"Embed this in your website\",\"format\":\"Format\",\"fullscreen\":\"Fullscreen\",\"generate_a_link\":\"Generate a Link\",\"height\":\"Height: \",\"html\":\"HTML\",\"link_options\":\"Link Options\",\"link_to_the\":\"Link to the\",\"options\":\"Options\",\"preview\":\"Preview\",\"scroll\":\"Scroll\",\"size\":\"Size\",\"slideshow\":\"Slideshow\",\"start_at_page\":\"Start at page:\",\"style\":\"Style:\",\"sup_sup_the_code_will_be_updated\":\"\\u003csup\\u003e*\\u003c/sup\\u003e The code will be updated based on your changes.\",\"width\":\"Width: \",\"wordpress\":\"Wordpress\"},\"print_lightbox\":{\"cancel\":\"Cancel\",\"download_and_print\":\"Download and print\",\"in_order_to_print_this_document_\":\"In order to print this document from Scribd, you\'ll first need to download it.\",\"print_document\":\"Print document\"}},\"redesign_elements\":{\"actions\":{\"embed\":\"Embed\",\"print\":\"Print\",\"share\":\"Share\"},\"metadata_section\":{\"full_description\":\"Full description\",\"related_titles\":\"Related titles\"},\"more_info_module\":{\"document_information\":\"Document Information\"}},\"show\":{\"sign_in_to_flag_this_title\":\"Sign in to flag this title\",\"you_re_reading_a_preview\":\"You\'re Reading a Preview\"},\"sidebar\":{\"available_formats\":\"Available Formats\",\"click_to_collapse_document_information\":\"click to collapse document information\",\"click_to_expand_document_information\":\"click to expand document information\",\"copyright_no_colon\":\"Copyright\",\"isbn_no_colon\":\"ISBN\",\"uploaded_by\":\"Uploaded by\",\"written_by\":\"Written by\"},\"toolbar\":{\"exit_fullscreen\":\"Exit fullscreen\",\"fullscreen\":\"Fullscreen\",\"showing_strong_1_strong_result_for_query\":\"Showing \\u003cstrong\\u003e1\\u003c/strong\\u003e result for\",\"showing_strong_num_results_strong_results_for_query\":\"Showing \\u003cstrong\\u003e{{num_results}}\\u003c/strong\\u003e results for\",\"you_are_on_page_props_current_page\":\"You are on page {{props_current_page}}\",\"zoom_in\":\"Zoom in\",\"zoom_out\":\"Zoom out\"},\"upvote\":{\"not_useful\":\"Not useful\",\"this_document_is\":\"This document is...\",\"useful\":\"Useful\"}},\"plan_selection_page\":{\"plan_card\":{\"a_selection\":\"200,000+ ebooks and audiobooks, including a selection of our most popular titles\",\"billed_monthly\":\"Billed monthly after trial.\",\"docs_presentations\":\"195M+ documents and presentations on Scribd and SlideShare ad-free\",\"magazines_etc\":\"Magazines, podcasts and sheet music\",\"plus\":\"Plus:\",\"subscribe_plus\":\"Subscribe to Plus\",\"subscribe_standard\":\"Subscribe to Standard\",\"titles_per_month\":\"{{titles}} titles per month from our Plus catalog that includes even more bestsellers and new releases\",\"unlimited\":\"Unlimited access to:\"}},\"plans\":{\"unlock_dropdown\":{\"unlocks\":\"{{count}} unlock\",\"unlocks_plural\":\"{{count}} unlocks\",\"unlocks_renew\":\"Unlocks renew {{refresh_date}}\",\"unlocks_renew_after_payment_information\":\"Unlocks renew after payment information is updated.\",\"view_unlock_history\":\"View unlock history\"},\"unlock_modal\":{\"after_unlocking_this_title\":\"After unlocking this title, you\'ll have {{count}} unlock left until {{refresh_date}}.\",\"after_unlocking_this_title_plural\":\"After unlocking this title, you\'ll have {{count}} unlocks left until {{refresh_date}}.\",\"unlock_this_title\":\"Unlock this title\",\"you_have_unlocks_available\":\"You have {{count}} unlock available.\",\"you_have_unlocks_available_plural\":\"You have {{count}} unlocks available.\"}},\"privacy_policy_modal\":{\"accept\":\"Accept and continue\",\"details_below\":\"You can read the details below. By accepting, you agree to the updated privacy policy.\",\"thank_you\":\"Thank you!\",\"title\":\"We\'ve updated our privacy policy.\",\"try_again\":\"We’ve encountered a problem, please try again.\",\"updated_privacy_policy\":\"We’ve updated our privacy policy so that we are compliant with changing global privacy regulations and to provide you with insight into the limited ways in which we use your data. \",\"view_policy\":\"View updated privacy policy\"},\"promos\":{\"annual_offer\":{\"current_plan\":\"Current plan\",\"immerse\":\"Immerse yourself all year round\",\"read_more_html\":\"Read more.\\u003cspan class=\'save_text\'\\u003eSave more.\\u003c/span\\u003e\",\"save_percent\":\"Save {{value}}%\",\"switch_plan\":\"Switch plan\",\"terms_footer_html\":\"You will be charged the annual fee of {{price}} on {{date}} when you click \\\"Switch plan.\\\" View our \\u003ca class=\'terms_link\' target=\\\"_blank\\\" href={{href}}\\u003eterms of service\\u003c/a\\u003e.\"}},\"receipt\":{\"download\":{\"document\":\"Document\",\"download_iframe\":\"Download iframe\",\"downloading\":\"Downloading\"}},\"recs\":{\"overflow_menu\":{\"congrats_marked_as_read\":\"Congrats! This title is marked as finished.\",\"dont_show_again\":\"Don\'t show again\",\"mark_as_finished\":\"Mark as finished\",\"mark_as_unfinished\":\"Mark as unfinished\",\"removed_from_your_suggestions\":\"Removed from your suggestions.\",\"suggest_more_like_this\":\"Suggest more like this\",\"title_marked_as_unfinished\":\"This title is marked as unfinished.\",\"undo_suggest_more\":\"Undo suggest more like this\",\"we_wont_suggest_more_like_this\":\"Got it! We won’t suggest more like this.\",\"we_wont_suggest_this_again\":\"Got it! We won\'t suggest this again.\",\"well_suggest_more_like_this\":\"Awesome! We\'ll suggest more like this.\"}},\"saved\":{\"list_item_controls\":{\"create_list\":\"Create List\"}},\"scribd\":{\"doc_page\":{\"download_as_multiple_formats\":\"Download as {{formats}}, or {{lastFormat}}\",\"download_as_single_format\":\"Download as {{format}}\",\"download_as_two_formats\":\"Download as {{formatOne}} or {{formatTwo}}\"},\"logged_out_homepage\":{\"we_have_a_new_look\":\"We have a new look. \\u003ca target=\\\"_blank\\\" href={{learnMoreLink}}\\u003eLearn more\\u003c/a\\u003e\",\"welcome_to_scribd\":{\"welcome_to_scribd\":\"Welcome to Scribd\"}},\"modal\":{\"opt_in\":{\"continue_to_scribd\":\"Continue to Scribd\",\"special_offers_new_content_to_your_inbox\":\"Find out about special offers, new content, plus recommendations from our premium products sent directly to your inbox.\"},\"progressive_profile\":{\"explore_documents\":\"Explore [{{documentsCount}}M+] documents across every topic and niche, shared by a global community of thinkers.\",\"get_ad_free_access\":\"Get ad-free access and download any document you want across every topic and niche with a 30-day free trial.\",\"join_our_mailing_list\":\"Join our mailing list to receive personalized recommendations and new product updates\",\"send_me_email_updates\":\"Send me email updates from Scribd\",\"welcome_to_scribd\":\"Welcome to Scribd!\"},\"upsell\":{\"get_the_most_out_of_scribd\":\"Get the most out of Scribd\",\"unlock_full_access_download_documents\":\"Unlock full access to the world’s most fascinating digital library. Download documents and read offline on the app.\"}},\"navigation_category\":{\"academic\":\"Academic\",\"culture\":\"Culture\",\"hobbies_and_crafts\":\"Hobbies \\u0026 Crafts\",\"personal_growth\":\"Personal Growth\",\"professional\":\"Professional\"},\"shared\":{\"cross_link_message\":\"From Scribd\"}},\"search\":{\"filters\":{\"filters\":\"Filters\"},\"list_view\":{\"on_date\":\"on {{date}}\",\"songbook_title\":\"From songbook\"},\"pagination\":{\"next\":\"next\",\"previous\":\"previous\"},\"results\":{\"reading_list\":\"Reading List\",\"top_result\":\"Top Result\"}},\"shared\":{\"account_creation\":{\"add_note_sign_in\":\"To add a note, please sign in\",\"add_note_sign_up\":\"To add a note, please sign up\",\"already_have_an_account\":\"Already have an account?\",\"annotate_document_sign_in\":\"To annotate this document, please sign in\",\"annotate_document_sign_up\":\"To annotate this document, please sign up\",\"annotate_sign_in\":\"To annotate, please sign in\",\"back_to_sign_in\":\"Back to sign in\",\"continue_reading_sign_in\":\"To continue reading, please sign in\",\"continue_reading_sign_up\":\"To continue reading, please sign up\",\"create_bookmark_sign_in\":\"To create a bookmark, please sign in\",\"create_bookmark_sign_up\":\"To create a bookmark, please sign up\",\"creating_your_account\":\"Creating your account...\",\"disclaimer\":\"By signing up with Scribd, you agree to our \\u003ca href=\\\"{{terms_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e\",\"download_document_sign_in\":\"To download this document, please sign in\",\"download_document_sign_up\":\"To download this document, please sign up\",\"errors\":{\"email_invalid\":\"This email address is invalid or blocked. Please enter another email.\",\"email_registered\":\"This email address is already registered with Scribd. Please enter your password to sign in.\",\"email_taken\":\"That email is taken by another user, please try again.\",\"invalid_character_in_name_please_remove\":\"Invalid character in name. Please remove any special characters\",\"no_valid_email_modal_desc\":\"Your email address is missing or invalid. To keep your account secure, please provide a valid email address.\",\"no_valid_email_modal_title\":\"Update your email\",\"password_10_chars\":\"Please enter a password that is at least 10 characters\",\"please_enter_a_name\":\"Please enter a name\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"that_doesn_t_appear_to_be_a\":\"That doesn\'t appear to be a valid email address. Please try again.\"},\"facebook\":{\"error\":\"Sorry, we are unable to log you in via Facebook at this time.\",\"sign_in\":\"Continue with Facebook\",\"sign_up\":\"Sign up with Facebook\"},\"fail\":\"Fail.\",\"flag_document_sign_in\":\"To flag this document, please sign in\",\"flag_document_sign_up\":\"To flag this document, please sign up\",\"forgot\":{\"enter_email\":\"Enter your email address and we\'ll send you an email with a link to reset your password.\",\"weve_sent_email_html\":\"We\'ve sent an email to \\u003cstrong\\u003e{{escape_validated_email}}\\u003c/strong\\u003e with instructions to reset your password. If it doesn\'t show up soon, check your spam folder and then read this \\u003ca href=\\\"https://support.scribd.com/hc/articles/210134406-What-do-I-do-if-I-ve-lost-or-forgotten-my-password-\\\"\\u003eHelp Center article\\u003c/a\\u003e.\"},\"forgot_password\":\"Forgot password?\",\"give_gift_sign_in\":\"To give this gift, please sign in\",\"give_gift_sign_up\":\"To give this gift, please sign up\",\"google\":{\"error\":\"Google sign in failed\"},\"highlight_document_sign_in\":\"To highlight this document, please sign in\",\"highlight_document_sign_up\":\"To highlight this document, please sign up\",\"join_today_to_start_reading\":\"Join today to start reading\",\"logging_you_in\":\"Logging you in...\",\"not_you\":\"Not you?\",\"now_bringing_you_back\":\"Now bringing you back...\",\"pass\":\"Pass.\",\"password_must_be_at_least_ten_characters\":\"At least 10 characters\",\"password_not_been_breached\":\"Password has not been breached\",\"password_strength\":\"Password strength\",\"password_strength_colon\":\"Password strength: \",\"password_strength_good\":\"Good\",\"password_strength_moderate\":\"Moderate\",\"password_strength_strong\":\"Strong\",\"password_strength_weak\":\"Weak\",\"people_browsing_scribd_html\":\"\\u003cspan\\u003e{{count, locale}} person\\u003c/span\\u003e browsing Scribd right now\",\"people_browsing_scribd_html_plural\":\"\\u003cspan\\u003e{{count, locale}} people\\u003c/span\\u003e browsing Scribd right now\",\"rate_document_sign_in\":\"To rate this document, please sign in\",\"rate_document_sign_up\":\"To rate this document, please sign up\",\"recaptcha_disclaimer\":\"This site is protected by reCAPTCHA and the Google \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{policy_href}}\\\" target=\\\"_blank\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e apply.\",\"redeem_offer_sign_in\":\"To redeem this offer, please sign in\",\"redeem_offer_sign_up\":\"To redeem this offer, please sign up\",\"remember_me\":\"Remember me\",\"reset_password\":\"Reset password\",\"save_document_sign_in\":\"To save this document, please sign in\",\"save_document_sign_up\":\"To save this document, please sign up\",\"send_me_updates_from_scribd\":\"Send me updates from Scribd\",\"share_quote_sign_in\":\"To share this quote, please sign in\",\"share_quote_sign_up\":\"To share this quote, please sign up\",\"sign_in\":\"Sign in\",\"sign_in_add_note\":\"To add a note, please sign in\",\"sign_in_bookmark\":\"To create a bookmark, please sign in\",\"sign_in_create_list\":\"To create a list, please sign in\",\"sign_in_download\":\"To download, please sign in\",\"sign_in_follow\":\"To follow, please sign in\",\"sign_in_give_gift\":\"To give this gift, please sign in\",\"sign_in_highlight\":\"To highlight, please sign in\",\"sign_in_rate\":\"To rate, please sign in\",\"sign_in_redeem\":\"To redeem, please sign in\",\"sign_in_review\":\"To review, please sign in\",\"sign_in_save\":\"To save, please sign in\",\"sign_in_share_quote\":\"To share this quote, please sign in\",\"sign_in_start_months\":\"To start your free {{count}} month, please sign in\",\"sign_in_start_months_plural\":\"To start your free {{count}} months, please sign in\",\"sign_in_successful\":\"Sign in successful\",\"sign_in_to_scribd\":\"Sign in to Scribd\",\"sign_in_upload\":\"To upload, please sign in\",\"sign_in_with_email\":\"Sign in with email\",\"sign_up\":\"Sign up\",\"sign_up_add_note_this_title\":\"Sign up to add a note to this title.\",\"sign_up_annotate\":\"Sign up to annotate.\",\"sign_up_continue_reading_this_title\":\"Sign up to continue reading this title.\",\"sign_up_create_bookmark_this_title\":\"Sign up to create a bookmark.\",\"sign_up_create_list_this_title\":\"Sign up to create a list.\",\"sign_up_download_this_title\":\"Sign up to download this title.\",\"sign_up_follow_magazine_this_title\":\"Sign up to follow this magazine.\",\"sign_up_free_months_this_title\":\"Sign up to start your free {{count}} month.\",\"sign_up_free_months_this_title_plural\":\"Sign up to start your free {{count}} months.\",\"sign_up_give_gift_this_title\":\"Sign up to give this gift.\",\"sign_up_highlight_this_title\":\"Sign up to highlight.\",\"sign_up_or_sign_in\":\"Sign up or sign in\",\"sign_up_save\":\"To save, please create a Scribd account\",\"sign_up_save_this_title\":\"Sign up to save this title.\",\"sign_up_share_quote_this_title\":\"Sign up to share a quote from this title.\",\"sign_up_successful\":\"Sign up successful\",\"sign_up_to_rate_title\":\"Sign up to rate this title\",\"sign_up_to_review_title\":\"Sign up to review this title\",\"sign_up_with_email\":\"Sign up with email\",\"signup_to_redeem_offer\":\"Sign up to redeem offer\",\"start_free_months_sign_in\":\"To start your free {{count}} month, please sign in\",\"start_free_months_sign_in_plural\":\"To start your free {{count}} months, please sign in\",\"start_free_months_sign_up\":\"To start your free {{count}} month, please sign up\",\"start_free_months_sign_up_plural\":\"To start your free {{count}} months, please sign up\",\"upload_document_sign_in\":\"To upload a document, please sign in\",\"upload_document_sign_up\":\"To upload a document, please sign up\",\"use_another_email_address\":\"Use another email address\"},\"actions\":{\"read_continue\":\"Continue reading\",\"read_preview\":\"Read preview\"},\"ad_blocker_modal\":{\"i_disabled_my_ad_blocker\":\"I disabled my ad-blocker\",\"it_looks_like_youre_using_and_ad_blocker\":\"It looks like you\'re using an ad-blocker.\",\"show_me_how\":\"Show me how\",\"to_listen_to_titels_on_everand_disble_ad_blocker_or_use_mobile_app\":\"To listen to titles on Everand, please disable your ad-blocker or use our mobile app.\",\"to_read_titles_on_everand_disable_ad_blocker_or_use_mobile_app\":\"To read titles on Everand, please disable your ad-blocker or use our mobile app.\"},\"byline\":{\"and\":\"and\",\"by\":\"By\",\"narrated_by\":\"Narrated by\",\"published_by\":\"Published by\",\"written_by\":\"Written by\"},\"carousels\":{\"carousel_next\":\"Carousel Next\",\"carousel_previous\":\"Carousel Previous\",\"skip_carousel\":\"Skip carousel\"},\"common\":{\"ad\":\"ad\",\"add_a_new_payment_method\":\"Add a new payment method\",\"added_by\":\"Added by\",\"back\":\"Back\",\"back_to_top\":\"Back to top\",\"cancel\":\"Cancel\",\"cancel_anytime\":\"Cancel anytime.\",\"close\":\"Close\",\"close_dialog\":\"Close dialog\",\"current_of_total\":\"{{current}} of {{total}}\",\"current_plan\":\"Current Plan\",\"delete\":\"Delete\",\"description\":\"Description\",\"do_not_ask_me_again\":\"Do not ask me again\",\"download\":\"Download\",\"download_now\":\"Download now\",\"email_address\":\"Email address\",\"error\":\"Error\",\"errors\":{\"could_not_complete_request\":\"We couldn\'t complete your request\",\"failed_to_delete_review\":\"Review was not deleted. Please try again.\",\"failed_to_load\":\"Failed to load, try again\",\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_review\":\"Your review was not saved. Please try again.\",\"failed_to_save_review_vote\":\"Your vote was not saved. Please try again.\",\"failed_to_save_title\":\"Failed to save title\",\"please_try_again_later\":\"Please try again later.\"},\"forms\":{\"at_least_10_characters\":\"(at least 10 characters)\",\"email\":\"Email\",\"error\":\"Error\",\"invalid\":\"Invalid\",\"invalid_email\":\"Please enter a valid email\",\"name\":\"Name\",\"optional\":\"(optional)\",\"password\":\"Password\",\"please_enter_a_password\":\"Please enter a password\",\"please_enter_an_email\":\"Please enter an email\",\"required\":\"(required)\"},\"hide\":\"Hide\",\"info\":\"Information\",\"issue\":\"Issue\",\"key_insights\":\"Key insights from\",\"learn_more\":\"Learn more\",\"length\":\"Length\",\"library\":{\"add_to_list\":{\"success_message\":\"Added to {{collection_name}}\"},\"add_with_title\":\"Save {{title}} for later\",\"remove_with_title\":\"Remove {{title}} from saved\",\"sign_up_to_save\":\"Sign up to save this title\"},\"listen_free_for_30_days\":\"Listen free for {{trialDuration}} days\",\"listen_now\":\"Listen now\",\"listen_on_everand\":\"Listen on Everand\",\"load_more\":\"Load more\",\"more\":\"More\",\"more_about_this_title\":\"More about this title\",\"new_to_scribd\":\"New to Scribd?\",\"notice\":\"Notice\",\"opens_in_a_new_window\":\"opens in a new window\",\"or\":\"or\",\"pause\":\"Pause\",\"play_preview\":\"Play preview\",\"play_sample\":\"Play sample\",\"preferred_language_set_to_language\":\"Preferred language set to {{language}}\",\"progress\":{\"listened\":\"listened\",\"read\":\"read\"},\"rating\":\"rating\",\"ratings\":\"ratings\",\"read_count\":\"{{count}} read\",\"read_count_plural\":\"{{count}} reads\",\"read_less\":\"Read less\",\"read_more\":\"Read more\",\"read_now\":\"Read now\",\"read_on_everand\":\"Read on Everand\",\"read_on_scribd\":\"Read on Scribd\",\"read_preview\":\"Read preview\",\"recommended\":\"Recommended\",\"remove\":\"Remove\",\"remove_from_saved\":\"Remove from Saved\",\"removed_from_saved\":\"Removed from Saved\",\"removed_from_your_saved_list\":\"Removed from your saved list.\",\"restart_subscription\":\"Restart subscription\",\"resume_subscription\":\"Resume subscription\",\"save\":\"Save\",\"save_for_later\":\"Save for later\",\"saved\":\"Saved\",\"selected\":\"(selected)\",\"send_email\":\"Send email\",\"share_on\":{\"email\":\"Share via email\",\"email_mail_client\":\"Share with email, opens mail client\",\"facebook\":\"Share on Facebook\",\"facebook_new_window\":\"Share on Facebook, opens a new window\",\"linkedin\":\"Share on LinkedIn\",\"linkedin_new_window\":\"Share on LinkedIn, opens a new window\",\"pinterest\":\"Share on Pinterest\",\"pinterest_new_window\":\"Share on Pinterest, opens a new window\",\"twitter\":\"Share on Twitter\",\"twitter_new_window\":\"Share on Twitter, opens a new window\"},\"show\":\"Show\",\"sign_in\":\"Sign in\",\"sign_out\":\"Sign out\",\"songbook\":\"Songbook\",\"start_your_subscription\":\"Start your subscription\",\"success\":\"Success\",\"success_exclamation\":\"Success!\",\"title_author_separator\":\"by\",\"undo\":\"Undo\",\"undo_title_removed_from_saved\":\"Undo {{title}} removed from Saved\",\"update\":\"Update\",\"uploaded_by\":\"Uploaded by\",\"visually_hidden_next_item\":\"Next item\",\"visually_hidden_previous_item\":\"Previous item\",\"welcome_back\":\"Welcome back\",\"welcome_back_exclamation\":\"Welcome back!\",\"worlds_fascinating_library\":\"The world\'s most fascinating library\"},\"competitor_matrix\":{\"last_updated_aug\":\"Last updated on August 5, 2021\",\"million_ebooks\":\"1,000,000+ ebooks\",\"million_magazine_news_articles\":\"1,000,000+ magazine \\u0026 news articles\",\"no\":\"No\",\"thousands_audiobooks\":\"200,000+ audiobooks\",\"title\":\"See why readers choose Scribd\",\"yes\":\"Yes\"},\"content_lengths\":{\"articles_with_count\":\"{{count, locale}} article\",\"articles_with_count_plural\":\"{{count, locale}} articles\",\"hour_with_count\":\"{{count, locale}} hour\",\"hour_with_count_plural\":\"{{count, locale}} hours\",\"minute_with_count\":\"{{count, locale}} minute\",\"minute_with_count_plural\":\"{{count, locale}} minutes\",\"page_with_count\":\"{{count, locale}} page\",\"page_with_count_plural\":\"{{count, locale}} pages\",\"songs_with_count\":\"{{count, locale}} song\",\"songs_with_count_plural\":\"{{count, locale}} songs\"},\"content_preview\":{\"leaving_everand\":\"Leaving Everand on {{date}}\",\"newly_added_to_everand_only_on_our_new_plans\":\"Newly added to Everand — only on our new plans\"},\"content_types\":{\"series\":\"Series\"},\"cta\":{\"preview\":\"Preview\"},\"doc_download_modal\":{\"check_out_these\":\"Check out these other great titles\",\"continue_reading_ad_free_or_upgrade\":\"Continue reading ad-free with your trial or upgrade to a subscription to download hundreds of documents.\",\"current_payment\":\"Current payment method\",\"download_as\":\"Download as:\",\"download_document\":\"Download document\",\"download_hundreds_of_documents\":\"Download hundreds of documents. Read ad-free. Access to Scribd, Slideshare, and Everand.\",\"download_iframe\":\"Download iframe\",\"download_started\":\"Your download has started\",\"enrolling_in_automatic_payments_annual_with_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your subscription starting at the end of your free trial and charge the subscription fee (currently {{price}} + tax per year) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_annual_without_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your subscription starting at the end of your free trial and charge the subscription fee (currently {{price}}/year) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_monthly_with_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your subscription starting at the end of your free trial and charge the subscription fee (currently {{price}} + tax per month) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_monthly_without_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your subscription starting at the end of your free trial and charge the subscription fee (currently {{price}}/month) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"membership_paused_html\":\"Your membership is currently paused until {{resumeMembershipDate}}. Would you like to resume your membership now to download \\u003cem\\u003e{{title}}\\u003c/em\\u003e?\",\"not_available\":\"This document is not available for download\",\"starting_date\":\"Starting {{date}}\",\"subscribe\":\"Subscribe\",\"subscription_payment_processed\":\"Subscription payment processed\",\"there_was_an_issue_processing_html\":\"There was an issue processing your request. \\u003ca href=\\\"{{supportPath}}\\\" target=\\\"_blank\\\"\\u003eContact customer service\\u003c/a\\u003e to continue.\",\"there_was_an_issue_with_payment_html\":\"There was an issue with your payment method. \\u003ca href=\\\"{{resubscribePath}}\\\"\\u003eUpdate payment details\\u003c/a\\u003e to continue.\",\"upgrade_your_trial\":\"Upgrade your trial\",\"uploaded\":\"Uploaded By\",\"you_will_be_billed\":\"You will be billed {{amount}} today\",\"zero_of_count_downloads_remaining_in_your_trial\":\"0 of {{count}} free downloads remaining in your trial\"},\"doc_page\":{\"download_document\":\"Download document\",\"download_unavailable\":\"Download unavailable\"},\"doc_preview\":{\"views\":\"{{formatted_views}} views\"},\"end_of_preview\":{\"view_plan_options\":\"View plan options\"},\"errors\":{\"action_incomplete_heading\":\"Action Incomplete\",\"action_incomplete_message\":\"Oops! We\'re sorry, but we couldn\'t complete the action you requested at this time. We appreciate your patience as we come up with a solution.\",\"something_went_wrong\":\"Something went wrong, please try again.\",\"something_went_wrong_generic\":\"Something went wrong. Please try again\"},\"everand\":{\"cta\":{\"download_free_days\":\"Download free for {{trialDuration}} days\",\"read_free_for_30_days\":\"Read free for 30 days\"}},\"everand_banner\":{\"visit_everand\":\"Visit Everand.\"},\"footer\":{\"about\":\"About\",\"about_scribd_inc\":\"About Scribd, Inc.\",\"accessibility\":\"Accessibility\",\"cancel_contract\":\"Cancel contracts here\",\"contact_us\":\"Contact us\",\"cookie_preferences\":\"Cookie Preferences\",\"copyright\":\"Copyright\",\"copyright_awareness\":\"We take content rights seriously. \\u003ca href={{learnMoreLink}}\\u003eLearn more\\u003c/a\\u003e in our FAQs or \\u003ca href={{reportLink}}\\u003ereport infringement here\\u003c/a\\u003e.\",\"copyright_copy_current_year_scribd\":\"Copyright \\u0026copy; {{currentYear}} Scribd Inc.\",\"do_not_sell_share_info\":\"Do not sell or share my personal information\",\"everand_books_audiobooks\":\"Everand: Ebooks \\u0026 Audiobooks\",\"footer_menu\":\"Footer menu\",\"gifts\":\"Gifts\",\"help_faq\":\"Help / FAQ\",\"join_our_team_exclamation\":\"Join our team!\",\"legal\":\"Legal\",\"our_blog\":\"Our blog\",\"privacy\":\"Privacy\",\"publishers\":\"Publishers\",\"purchase_help\":\"Purchase help\",\"redeem_gift_card\":\"Redeem gift card\",\"scribd_-_download_on_the_app_store\":\"Scribd - Download on the App Store\",\"scribd_-_get_it_on_google_play\":\"Scribd - Get it on Google Play\",\"scribd_-_get_it_on_kindle_fire\":\"Scribd for Kindle Fire\",\"social\":\"Social\",\"support\":\"Support\",\"terms\":\"Terms\"},\"get_app_modal\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\",\"an_error_occurred_please_try_an\":\"An error occurred please try an email\",\"enter_your_email\":\"Enter your email\",\"enter_your_phone_or_email\":\"Enter your phone or email\",\"get_the_app_to_read\":\"Get the app to read anytime, anywhere.\",\"get_the_app_to_read_and_listen\":\"Get the app to read and listen anytime, anywhere.\",\"link_sent_please_check_your_mobile\":\"Link sent! Please check your mobile device\",\"listen_offline_with_app\":\"Listen offline with the app\",\"phone_or_email\":\"Phone or email\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"please_enter_a_valid_phone_number\":\"Please enter a valid phone number\",\"please_enter_a_valid_phone_number_or_email\":\"Please enter a valid phone number or email\",\"read_offline_with_app\":\"Read offline with the app\",\"send\":\"Send\"},\"listen_button\":{\"listen_continue\":\"Continue listening\",\"listen_start\":\"Start listening\"},\"lists\":{\"curated_by\":\"Curated by\",\"view_total_titles\":\"View {{count}} title\",\"view_total_titles_plural\":\"View {{count}} titles\"},\"loading_button\":{\"tooltip_content\":{\"loading\":\"Loading...\"}},\"login\":{\"join_lightbox\":{\"email\":\"Email\",\"we_couldn_t_complete_your_request\":\"We couldn\'t complete your request\"}},\"mobile_bottom_navigation_tabs\":{\"active\":\", active\",\"home\":\"Home\",\"quick_navigation\":\"Quick navigation\"},\"modal\":{\"open\":\"Open\",\"opt_in\":{\"stay_in_the_loop\":\"Stay in the loop\"},\"upsell\":{\"cancel_anytime\":\"Cancel anytime\",\"continue_with_free_trial\":\"Continue with {{trialDuration}}-day free trial\",\"continue_with_limited_access\":\"Continue with limited access\",\"or\":\"or\"}},\"modal_redirect\":{\"redirecting\":\"Redirecting\",\"subscribe_to_continue_reading_copy\":\"Subscribe to continue reading\"},\"navigation\":{\"sidebar\":{\"selected\":\", selected\"},\"upload\":\"Upload\"},\"plan_card\":{\"per_month\":\"/month\"},\"plan_type\":{\"plus_annual\":\"Plus Annual\",\"plus_monthly\":\"Plus Monthly\",\"standard_annual\":\"Standard Annual\",\"standard_monthly\":\"Standard Monthly\"},\"plans\":{\"get_more_unlocks\":\"Get more unlocks\",\"moving_to_plus\":\"Moving to Plus on {{date}}\",\"next_unlock_available\":\"Your next unlock will be available on {{refresh_date}}\",\"no_unlocks_available\":\"0 unlocks available\",\"num_unlocks_available\":\"{{count}} unlock available.\",\"num_unlocks_available_plural\":\"{{count}} unlocks available.\",\"num_unlocks_available_renew_monthly\":\"{{count}} unlock available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"num_unlocks_available_renew_monthly_plural\":\"{{count}} unlocks available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"renew_and_upgrade\":\"Renew and upgrade to Plus to unlock this title.\",\"renew_get_next_unlock\":\"Renew your subscription to get your next unlock on {{refresh_date}}.\",\"resume_and_upgrade\":\"Resume and upgrade to Plus to unlock this title.\",\"switch_back_to_plus_to_get_your_next_unlock\":\"Switch back to Plus to get your next unlock on {{renew_date}}.\",\"unlimited\":\"Unlimited\",\"unlock_title\":\"Unlock title\",\"unlocked\":\"Unlocked\",\"unlocks_available_expire_on_date_html\":\"{{count}} unlock available. Unused unlocks expire on {{expire_date}}.\",\"unlocks_available_expire_on_date_html_plural\":\"{{count}} unlocks available. Unused unlocks expire on {{expire_date}}.\",\"unused_unlocks_expire_on_date\":\"Unused unlocks expire on {{expire_date}}.\",\"upgrade_to_unlock\":\"Upgrade to Plus to unlock\",\"you_have_unlocked_title\":\"You\'ve unlocked this title.\",\"youve_unlocked_this_title\":\"You’ve unlocked this title.\"},\"play_sample_button\":{\"pause\":\"Pause\",\"play_sample\":\"Play sample\"},\"podcast_episode\":{\"from\":\"From\"},\"podcast_series\":{\"num_episodes\":\"{{ count }} episode\",\"num_episodes_plural\":\"{{ count }} episodes\",\"num_podcast_episodes\":\"{{count, locale}} podcast episode\",\"num_podcast_episodes_plural\":\"{{count, locale}} podcast episodes\"},\"promos\":{\"annual_offer\":{\"annual\":\"Premium Annual\",\"monthly\":\"Premium Monthly\",\"youre_all_set_html\":\"You\'re all set! You’ve updated your plan. \\u003ca href={{account_settings_url}}\\u003eView your plan\\u003c/a\\u003e in your account.\"}},\"react\":{\"button_menu\":{\"close_menu\":\"Close menu\"},\"modals\":{\"delete_item_in_list\":{\"cancel\":\"Cancel\",\"delete\":\"Delete\",\"do_not_ask_me_again\":\"Do not ask me again\",\"removing_from_saved_will_also_delete\":\"Removing from Saved will also delete the title from your lists.\",\"this_title_is_also_in_a\":\"This title is also in a list.\"}},\"save_button\":{\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_title\":\"Failed to save title\",\"remove_short_title_from_saved\":\"Remove {{short_title}} from Saved\",\"save_short_title_for_later\":\"Save {{short_title}} For Later\",\"sign_up_to_save\":\"Sign up to save this title\"},\"sharing_buttons\":{\"check_out_props_share_title_on_scribd\":\"Check out {{props_share_title}} on Scribd\",\"i_m_reading_props_document_collection_name_on_scribd_props_document_collection_url\":\"I’m reading {{props_document_collection_name}} on Scribd: {{props_document_collection_url}}\",\"read_props_document_collection_name_on_scribd\":\"Read {{props_document_collection_name}} on Scribd\",\"share_on_facebook_opens_a_new\":\"Share on Facebook, opens a new window\",\"share_on_linkedin_opens_a_new\":\"Share on LinkedIn, opens a new window\",\"share_on_twitter_opens_a_new\":\"Share on Twitter, opens a new window\",\"share_with_email_opens_mail_client\":\"Share with Email, opens mail client\",\"sharing_options\":\"Sharing Options\"}},\"reading_progress\":{\"base\":{\"we_ve_moved_you_to_where_you\":\"We\'ve moved you to where you read on your {{progress_device_name}}\"}},\"renew_upgrade_modal\":{\"please_renew_your_subscription_first_in\":\"Please renew your subscription first in order to upgrade to Plus to unlock this title.\",\"renew_and_upgrade_to_unlock\":\"Renew and upgrade to unlock this title\",\"renew_subscription\":\"Renew subscription\"},\"resume_membership\":\"Resume subscription\",\"save_button\":{\"save\":\"Save\",\"saved\":\"Saved\"},\"skip_link\":{\"skip_content\":\"Skip content\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Scribd on Facebook\",\"scribd_on_instagram_aria_label\":\"Scribd on Instagram\",\"scribd_on_pinterest_aria_label\":\"Scribd on Pinterest\",\"scribd_on_twitter_aria_label\":\"Scribd on Twitter\"},\"star_ratings\":{\"clear_rating\":\"Clear rating\",\"i_didnt_like_it_at_all\":\"I didn\'t like it at all\",\"i_didnt_like_it_that_much\":\"I didn\'t like it that much\",\"i_liked_it\":\"I liked it\",\"i_loved_it\":\"I loved it\",\"i_thought_it_was_ok\":\"I thought it was OK\",\"no_ratings\":\"0 ratings\",\"rate_as_rating_out_of_5\":\"Rate as {{value}} out of 5\",\"rating_rating_to_display_out_of_5_stars\":\"Rating: {{ratingToDisplay}} out of 5 stars\",\"ratings\":\"rating\",\"ratings_plural\":\"ratings\",\"saved\":\"Saved!\",\"selected\":\"(selected)\",\"user_rating_star_rating_saved\":\"{{userRating}} star rating saved\"},\"start_exploring\":\"Start exploring\",\"text_links\":{\"all_categories\":\"All categories\",\"related_authors\":\"Related authors\",\"view_all_categories_in_category\":\"View all categories in {{category}}\",\"view_fewer\":\"View fewer\",\"view_more\":\"View More\"},\"time_remaining\":{\"hours\":\"{{count}} hr left\",\"hours_plural\":\"{{count}} hrs left\",\"minutes\":\"{{count}} min left\",\"minutes_plural\":\"{{count}} mins left\",\"pages\":\"{{count}} page left\",\"pages_plural\":\"{{count}} pages left\"},\"trial\":{\"cancel_anytime\":\"Cancel anytime.\"},\"trial_duration\":{\"first_days_free\":\"Your first {{trialDuration}} days are free.\",\"read_free_days\":\"Read free for {{trialDuration}} days\",\"start_trial_days\":\"Start your free {{trialDuration}} days\"}},\"slideshare\":{\"accessibility\":{\"logo\":\"SlideShare, a Scribd company\"},\"checkout\":{\"hero_banner_title\":\"Your SlideShare presentation\"},\"join\":{\"ad_free_sign_up_sub_title\":\"You’ll get instant access to millions of presentations, documents, ebooks, audiobooks, magazines, podcasts and more. We’ll remind you before your trial ends.\",\"ad_free_sign_up_title\":\"To enjoy SlideShare ad-free, sign up for a free {{trialDuration}}-day Scribd trial\",\"already_have_scribd_account\":\"Already have a Scribd account?\",\"create_account\":\"Create a Scribd account to continue\",\"get_instant_access\":\"Get instant access to millions of documents, ebooks, audiobooks, magazines, podcasts, and more. All in one subscription.\",\"need_account_sign_in_slideshare\":\"You can use this account to access SlideShare and Scribd.\",\"to_continue_reading\":\"To continue reading on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\",\"trial_duration\":\"To download on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\"},\"login\":{\"sign_in\":\"Sign in with your Scribd account to continue\"}},\"subscribe_now\":{\"modal\":{\"continue_to_scribd\":\"Continue to Scribd\",\"looking_for_our_ebooks_audiobooks\":\"Looking for our ebooks and audiobooks?\",\"scribd_recently_launched_everand\":\"Scribd recently launched \\u003cem\\u003eEverand\\u003c/em\\u003e as your new home for ebooks, audiobooks, magazines, sheet music, and podcasts. Scribd is still your home for community-uploaded documents.\",\"visit_everand\":\"Visit Everand\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"unified_checkout\":{\"change_plans\":{\"upgrade_to_plus\":\"Upgrade to Plus\"},\"payment_options\":{\"current_payment\":\"Current payment method\"}},\"webpack\":{\"doc_page\":{\"src\":{\"App\":{\"Page\":{\"BlurPromo\":{\"BlurPromo\":{\"become_a_scribd_member_to_read\":\"Become a Scribd member to read and download full documents.\",\"cancel_anytime\":\"Cancel anytime\",\"continue_for_free\":\"Continue for Free\",\"continue_reading_with_trial\":\"Continue Reading with Trial\",\"or\":\"Or\",\"update_payment\":\"Update Payment\",\"update_payment_for_full_access\":\"Update payment for full access.\",\"upload_to_download\":\"Upload to Download\",\"upload_your_documents_to_download\":\"Upload your documents to download.\"}},\"Body\":{\"Body\":{\"share_this_document\":\"Share this document\"},\"FixedViewportBottomComponents\":{\"CollapseButton\":{\"CollapseButton\":{\"click_to_collapse_related_titles\":\"Click to collapse Related Titles\",\"click_to_expand_related_titles\":\"Click to expand Related Titles\"}},\"ViewInStorePromo\":{\"ViewInStorePromo\":{\"get_our_free_app\":\"Get our free app\",\"get_scribd_for_your_mobile_device\":\"Get Scribd for your mobile device.\"}}},\"Metadata\":{\"Extra\":{\"Extra\":{\"original_title_no_colon\":\"Original Title\"}}},\"Toolbar\":{\"Toolbar\":{\"jump_to_page\":\"Jump to Page\"}}},\"annotations\":{\"AnnotationPopover\":{\"AnnotationPopover\":{\"annotation_text_page_annotation_page_nread_more\":\"\\\"{{annotation_text}}…\\\" (page {{annotation_page}})\\\\nRead more:\"}},\"NoteEditor\":{\"NoteEditor\":{\"add_note\":\"Add Note\",\"cancel\":\"Cancel\",\"delete_note\":\"Delete note\",\"note\":\"Note\",\"note_note_group_notes_indexof_active_note_id_1_of_note_group_notes_length\":\"Note {{note_group_notes_indexof_active_note_id_1}} of {{note_group_notes_length}}\",\"save\":\"Save\",\"write_a_note\":\"Write a note…\"}}},\"modals\":{\"Description\":{\"Description\":{\"document_information\":\"Document Information\"}},\"ShareQuote\":{\"ShareQuote\":{\"share_quote\":\"Share Quote\"}}}}},\"body\":{\"sidebar\":{\"on_created_at\":\"on {{created_at}}\"}},\"shared\":{\"actions\":{\"modals\":{\"redirecting\":\"Redirecting...\",\"unable_to_unpause_account_please_try\":\"Unable to unpause account. Please try again\"}},\"base_page\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\"},\"components\":{\"modals\":{\"Download\":{\"Receipt\":{\"Receipt\":{\"uploaded_by_this_props_document_author_name\":\"Uploaded by {{this_props_document_author_name}}\"}}}}},\"download_button\":{\"button\":{\"download\":\"Download\"}},\"store\":{\"actions\":{\"modals\":{\"subscribe_to_continue_reading\":\"Subscribe to Continue Reading\"}}}}}}}}}}");Scribd.e2e_enabled = false;</script><script type="application/javascript">function prefetchResource(u){var x = new XMLHttpRequest();x.open("GET", u, true);x.send()};</script></body></html>