0% found this document useful (0 votes)
28 views24 pages

Computer highlight ch-1

The document provides a comprehensive guide on creating HTML forms using KompoZer, detailing the various elements such as input fields, text areas, and selection options. It explains the structure of HTML forms, including the use of action and method attributes, and introduces the KompoZer interface for web development. Additionally, it outlines the steps to create a simple registration form and highlights the advantages of using an IDE for web development.

Uploaded by

studymate003
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)
28 views24 pages

Computer highlight ch-1

The document provides a comprehensive guide on creating HTML forms using KompoZer, detailing the various elements such as input fields, text areas, and selection options. It explains the structure of HTML forms, including the use of action and method attributes, and introduces the KompoZer interface for web development. Additionally, it outlines the steps to create a simple registration form and highlights the advantages of using an IDE for web development.

Uploaded by

studymate003
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/ 24
Creating HTML forms using KompoZer With increase in the use of Internet many activities have become online. We may use a web page to fill information about ourselves or a product. HTML forms are used to help the visitors of the website to input data. It allows for more interactivity and control in data eniry. For instance, if you ‘want to open a mail account or register on a website, you need to enter your personal details in a form. This information is used to setup the account for the user. In order to obtain such information on Intemet, HTML forms are used. This data is further stored by the application and used to retrieve the details about the users registered on the website. ‘A form in HTMLis a container used to collect different kinds of inputs from the user. HTML forms contains elements like label, checkbox, text input field, radio button, submit button, reset button and many more. These elements are used to enter the data as well as validate the data within the forms. We will create asimple form to enter the data using HTML tags, but before that let us discuss about the elements used to create HTML forms. The elements used are described in the section below : © Form © Input e Textara Select and Option Form elements ‘The form element is used to create an HTML form. It acts as a container for all the elements used in the form. The tag
...
is used to implement this element. The example shows the use of the form element :
Creates checkboxes in the form, Multiple check boxes can be selected at a time, Generally ‘used to selectamultiple items from a given group of'tems. Creates a text field to enter text in the form, A ‘user can enter any data of his choice in the ‘textfield. Creates password field in the form. Similar to the textfield but the characters are not displayed to the user. Instead the character typed is converted into non readable format. (Creates a submit button in the form. On clicking ‘the submit button, the values of data entered in ‘the form is submitted to the file specified in the action attribute of the form element. ‘Creates a reset button in the form. On clicking ‘the reset button, the values of data entered in the form are cleared and set back to default values. ‘Table 1.1: Values of Type attribute used with input tag Computer Studies : 12 Highlighted by Pragati Computers, M. 9904167671. Textarea element ‘The Textarea element allows multi-line text input The tag is used to implement this clement. It allows entering unlimited number of characters. It can be used to eater comment, report or a long description of product. The size of a textarea element can be specified using rows ‘and Cols attributes. The rows attribute is used to set the number of rows of text that will be visible without scrolling up or down. The cols attribute is used to set the number of columns of text that will be visible without scrolling right or left. The following example shows how to insert a textarea, in the form. Input your comments:
Select and Option element ‘The select element is used to create a drop down list or menu in a form. The option element is used to specify the values that are to be displayed in the menu. The tag is used to create a drop down menu. The tag is used to create the elements within the menu, Following example shows the use of select and option element. Let ns now create a sample registration form using the elements leamed so far. Code listing 1.1 shows the HTML source code used to generate the form. The output of the code is shown in figure 1.1. -Registration Form</TTTLE> </HEAD> <BODY bgcolo="lightblue"> <hI> <center>Registration Form</center><IhI> <FORM name="firmRegistration® action="form html"> <center> <TABLE BORDER- <IR> <TD width="12%">First Name</TD> <TD width="1%">8enbsp:</TD> Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. "> Creating HTML fort using KompoZer 3 <TD> <INPUT type="textbox" name="txtFirstName"></TD> <INPUT type="checkbox” name="chkSinging" value="Sing" CHECKED>Singing. <INPUT type="checkbox" name="chkiancing" value~"Dance">Dancing <INPUT type="checkbox" name="chikReading" value="Read’>Reading. </tD> <TR> <TR> <TD>Address</TD> <TD>&inbsp;</TD> <ID> <Textarea name="txtAddress" rows="5" cols="70">Insert Address Hete</Textarea> </D> </TR> <TR> = | om = xR <TR> NR © <ID>Middle Name</TD> © t <TD> </TD> xn © <TD><INPUT type="text box" name="ttMiddleName"></TD> 2 + </TR> = So ie So oO <TD>Last Name</TD> a oa <TD> </TD> ao = <TD> <INPUT type="text box" name="txtLastName"></TD> 2 = = </TR> n <TR> n n <TD>Gender<JTD> n oO <ID>&inbsp;</TD> o ~~ <ID> a=] 2 <INPUT type="radio" name="Gender" value~"male" CHECKED>Male a € <INPUT type~adio" name~"Gender" value="female" >Female 3 </TD> ° </TR> ° oO <TR> oO s -<TD>Hobby</TD> = 4 <TD> /TD> co oD <> Da © © i ba a a > > 2 2 So s o o 4 ~ <= <= 2 > = < 2 a = = <TD>City</TD> <TD>&inbsp;<ITD> <r> 4 Computer Studies : 12 Select Name="embCity"> <Option >Ahmedabad</Option> <Option >Baroda</Option> <Option>Surat</Option> <TD> </TD> <TD>8anbsp;</TD> <TD><INPUT type="subinit” name="cmdSubmit" value="Submit’> <INPUT type="reset" name="emndReset" value~"Reset"> </TD> Registration Form ‘Gender Nie mate Hoboy Singing Dancing acing Figure 1.1: Registration Form as displayed in the web browser ‘Thus, you can see that creating a form using HTML tags is a tedious process. A simpler method isto use an IDE (Integrated Development Environment). An IDE is a software application that provides complete facilities to programmer to develop software. It provides a GUI (Graphical User Interface), text or code editor, a compiler and/or interpreter and a debugger. KompoZer, Eclipse, JBuilder and Netbeans are all examples of some open source IDEs. Let us discuss how to use the KompoZer to create web pages. Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. Creating HTML forms using KompoZer 5 Introduction to KompoZer KompoZer is a free open source web development IDE, It can be downloaded from http:// www KompoZernet. It provides a web page editor which has a simple graphical interface known as WYSIWYG "what you see is what you get". Itis a complete web authoring system which integrates web page development and web file management. Creating new web pages using KompoZer is quick and easy. The users can also edit the web pages by using the source code and making changes. KompoZer incorporates a Site Manager which gives rapid access to the files on both local machines and remote servers. Web pages and associated files can be uploaded to a remote server from within KompoZer. It also supports the use of "Styles" through Cascading Style Sheet (CSS). We will leam about CSS in the next chapter. Before we lear how to create forms using KompoZer, let us first leam the KompoZer interface. Open KompoZer by locating its icon. To view the different toolbars and status bar (if not visible) click on View > Show/Elide, Select all the options listed: Composition Toolbar, Format Toolbarl, Format Toolbar2, Edit Mode Toolbar and Status bar. Site Manager and Rulers option should also be checked. Figure 1.2 shows the window that will be displayed after selecting the toolbars. Comoeston Toolbar Format Tootoart __| Foimat Toobsrd ace tab Rulers og TT ‘Sie Manager| Page Area |-=o RT | i ‘Status ba Eat mose Tootbar Figure 1.2: KompoZer Interface Observe that in figure 1.2 you can see the menu bar on the top with the options like File, Edit, View, Insert, Format, Table, Tools and Help. Below the menu bar there are three Toolbars: Composition, Format Toolbar! and Format Toolbar2. The composition toolbar is used to create new file, open a file, save a file or publish a web page. ‘The Format toolbarl and Format toolbar? are used to format the text, add bullets, numbering and Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. 6 Computer Studies : 12 Open an existing File To open an existing file, click on s icon present on the composition toolbar. Alternatively, you can also click on File > Open. If the file has been opened recently, then you can also open the file from File > Recent Pages. Now let us lea to create a forms using KompoZer. We will create a simple form with two input fields: Name and E-mail address and a submit button, Follow the steps given to create the form. © Open KompoZer. Create a new file, © From the menu bar, select Insert > Form > Define Form, Alternatively, you can also click a ~ in the composition toolbar. This will open a Form Properties dialog box as shown in figure 1.4. Clicking on More Properties shows added options for the form. Ens Eo settings Form Name: Action URE: Method: : “More Properties Advanced Edit... cancel OK. Figure 1.4 : Form properties dialog box © Enter appropriate name for the form. In the Action URL, enter the file name where you ‘want the form data to be submitted. Select the method POST from the method drop down menu, and click on the OK button, Figure 1.5 shows the details added in the form property dialog box. Dimi EE settings Formbame: | Form? Action URL: | Formt html Method: POST | sore, Advanced Edit... Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. cancel OK. Figure 1.5 : Details entered in Form properties dialog box 8 ‘Computer Studies : 12 In the centre of the window, you can see two panes: Site Manager and blank web page Site manager is powerful tool used to navigate within the site or between the sites. You can close the site manager ppane by clicking on close button or press F9. The page pane shows a blank untitled web page. ‘The bottom right side of the window shows Edit mode toolbar with three viewing modes: Normal, ITM Tags and Preview. All the three viewing modes provide editing facilities. ‘The Preview mode offers the page view as seen in a browser. The difference is that in the preview mode the scripts do not run and therefore their effects will not be seen, The links also does not operate in preview mode. ‘The Normal view is very similar to preview mode. In this mode the table outlines are visible. ‘The HTML Tags view helps those who are familiar with HTML. A yellow marker is used to indicate the start tag for all elements. Clicking on a marker selects and highlights whole of the element. The left side of the page pane shows Design, Split and Source tabs. The Design tab is used to design the web page. The Split tab displays the HTML source of the current element. Source tab shows all details of the HTML code, It helps in editing the source code. On the bottom of the window you can see the status bar. When we click on any item in page, its structure appears in the status bar. If you want to customize any toolbar, right click on the respective toolbar and click on customize toolbar option. You can then customize the toolbar as per your choice, Create a New File ‘To create a new file, open KompoZer. In the menu bar click File > New. A dialog box as shown in figure 1.3 appears with title "Create a new document or template". Select "Blank document" option from the options that are visible in the dialog box. At the bottom of the dialog box you can see a label “Create in". Select New Tab option from the drop down menu next to it. This allows us to create the page in a new tab. Click on the Create button. PR emo What kind of filedo you want to create? @ A blank document 7 qedtea xHTML document @ sukct oTo Anew document based onatemplate Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. 7S A blank template Createin: |New Tab Si Cancel Greate Figure 1.3 : Create a new file (Creating HTML forms using KompoZer 7 You can see the form inserted with light blue colored outline in the untitled page as shown in figure 1.6. In normal view, the forms are shown surrounded by a dotted blue box. All the form elements like text box, radio button, check box and drop down box will be placed within this box. Press the Enter key a few times to give some space to work on the form. a RET iam Figure 1.6 : Light blue colored form outline. First, we will insert a label for the name field, Click on Insert > Form > Define label. Place the cursor in the form where you want your label to appear. Type the text "Name" in the label as shown in fig 1.7. To come out of the label field, click outside the field. Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. Figure 1.7 : Label field inserted in the form Creating HTML forms using KompoZer 9 ‘© To insert an input text field in the form, click Insert > Form -> Form Field. Figure 1.8 shows the form field properties dialog box. The drop down menu shows various input field type options which we had discussed earlier. Click on more properties, it shows advanced properties related to the field like field size, maximum length. Dimmcc cad Field Iype Field Settings Field Name: Initial value: Read Only *More Proper Figure 1.8 : Add form field ‘© From the drop down menu select Text. Under the Field Settings heading, enter a name in the Field Name text box. In our case we have used name as the field name. Enter some text in the Initial Value field, if you want to show some text before the user actually enters data. Here wwe have left this field empty. Click on the OK button. Figure 1.9 shows the form after text input field is added. Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. Figure 1.9 ; Label and Text field added 10 ‘Computer Studies : 12 © Similarly, we will add another label "E-mail" below the name label field. Add an input text field for E-mail, just like we did for the name field. Here enter text abc@xyz.com in the Initial Value textbox. This will help the user understand the format of E-mail address. Figure 1.10 shows the form with both the text field added. oman +=aleai owe Figure 1.10 : Form with both text fields added © Finally we will add a submit button in the form. Click Insert > Form > Form Field. From the drop-down menu select Submit Button. Type Submit in the both Field Name and Field Value text boxes, and click on the OK button. Figure 1.11 shows the look of form properties dialog ‘box for submit button. im|Form Field Propertios Field Type Submit Button S Fiald Settings FieldName; | submit Field Vatue: | Submit More Properties Advanced Edit... Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. Cancel OK Figure 1.11 : Input field submit button Creating HTML fort using KompoZer un © The form at present is in the normal view. To have a preview of the form click on Edit mode toolbar and select Preview. Figure 1.12 shows the form in the preview mode. Re Figure 1.12 : Form as seen in preview mode Thus, we have created our first form using KompoZer. You can sce how KompoZer helps you creating forms within a short span and also relieves you from the tedious job of writing the source code which takes a long time. You can also see the source code of the form just created by clicking on the Source tab. See figure 1.13. | [es tie vier pene Fast ale ss bob Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. EER cece olen 2 Figure 1.13 ; Source code view of form n Computer Studies : 12 Let us save the file which we have created, Click File > Save. Alternatively you can also click on the save button EY in the composition toolbar. This opens a Page Title dialog box Save as shown in figure 1.14. We can give a suitable title to the web page here. We have given, the name "examplel" to the title page. Now click on OK button. Please enter a title for the current page. This identifies the page in the window title and bookmarks. Cancel OK Figure 1.14 : Page title dialog box The page title will be displayed in the browser windows title bar when viewed in the browser. In case we have created multiple web pages we should give the name of the website as the title page. In this example, since we created a single web page with a form, the title page is named as examplel. © After clicking the OK button, a new dialog box "Save Page As" is opened which prompts to enter a filename and specify the location where you want to save the file as shown in figure 1.15. [amped Saveinfolder || laitristi [komporer Create Folder Places Name > ste Moditied Q search example hem! ssa bytes Yesterdayat 1728 Drecently Used arent hema 237 bytes. Saturday 15.4une 2013 wetripti Desktop Brlesysten Gszcarneryzem Bi harshitriya we music wa Pictures BVideos Bi Downloads HMLriles are | aay Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. Figure 1.15 : Save Page As Dialog box Creating HTML forms ing KompoZer 13 Remember to save the file with /itrn! or fm es an extension. Click on Save button. This will take us back to the main window. Note : If you are creating a website and this page is the home page that will open when you type the website's URL, then save the page with the name index.html. Having leamt how to create, open, save and create a simple form in KompoZer, let us now create the registration form, which we had created earlier using the HTML tags. Follow the steps given to create the registration form. Create a new file. © From the menu bar, select Insert > Form > Define Form, In the Form Properties dialog box enter the details as shown in figure 1.16. (Cinnies Settings FormName: |form2 action uri: [formz.html Method: POST > More Properties Advanced Edit... cancel OK. Figure 1.16 : Form Properties dialog box © Press OK. A form will be displayed showing the light blue colored outline. Press the Enter key 0 create space in the form. © To give the heading to the form, select Heading! from Format Toolbar. In Format Toolbar2, select centre align icon. Enter the text "Registration Form". © To insert the label, Click Form > Define Label. Type "First Name" in the Field name. Next, to insert input field for the label "First name", click Form > Form Field, Select Text in the Field Type menu. Figure 1.17 shows the Form Field Properties dialog box. Observe that we have used "firstname" as the field name. Press OK button. Piminnns Field ype Text Feld Settings FieldName: | Festname Initialvetue: ead only “More Properties Advanced Edit Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. cancel ox, Figure 1.17: Form Field Properties dialog box for Firstname rv} ‘Computer Studies : 12 © Similarly, insert the label "Middle Name" and "Last Name" in the form. The form after adding the fields will look similar to the one shown in figure 1.18. fe te ver ect ene He eh In 2B@38 % soar : voooewien 2 We 1B EY se nanauer oan Ve alli | scr nie DATEL ea Figure 1.18 : Form displayed after adding the fields © Now we need to create radio buttons for the Gender field. First, create a label named "Gender". e For creating a radio button, click Form -> Form Field and select field type as Radio Button from the drop down menu as shown in figure 1.19. mi Form Field Properties Field Type Radio Button Flald Settings Group Name: | gender Field vatue: | mate @ initially selected More Properties Advanced Edit... Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. cancel OK Figure 1.19 : Form field property for Radio Button Creating HTML forms using KompoZer 1s ‘Type a name in the Group name box (note that the name should not contain spaces). Here we have entered Group Name as "gender", Similarly in the Field Value text box type "male". If we want the male option of the radio button selected when the form is loaded then, check the box in front of the text "Initially Selected” and click OK button. © Insert a label with title "Male" near the radio button created. ‘© Similarly create another radio button named "Female". Remember, when we create the radio buttons within a group, the group name must be the same for all the possible answers. Hence enter the Group Name as "gender". In the Field Value text box type "female". Click OK button. © Insert a label "Female" near the radio button created. The form after inserting the radio buttons and their labels will look as shown in figure 1.20. Registration Form ne) ide Nae CC —— nhs) e+ Tame j <n aaaliaol a Figure 1.20 : Form displayed after radio buttons are added ‘© Now we need to add "Hobby" field. As a person can have more than one hobby, hence multiple selections of hobbies are possible. Thus we need to create check box for the hobby field. Create a label for hobby. © Now, click Form > Form Field and from the drop down menu select Check Box field type. Enter name in the Field Name box and a value in the Field Value box as shown in figure 1.21. Check the box in front of “Initially Selected" so as to keep the option checked when the form loads. Click OK button. Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. 16 Computer Studies : 12 Highlighted by Pragati Computers, M. 9904167671. i Form Field Properties Field Type \check#ox - Field Settings Field Name; [hobby Field Value: | singing G initially Checked T= ‘More Properties ‘Advanced Edit. Cancel ok Figure 1.21 : Checkbox field type settings © Insert a label “Singing” near the checkbox created. © Similarly create two checkboxes with Field Values as "dancing" and "reading" respectively. Remember, to keep the Field Name same for all the options of checkbox. © Insert the labels "Dancing" and "Reading" near the checkboxes created. The form after inserting checkboxes and their labels will look as shown in figure 1.22. Registration Form (Rot Name | [ Nise Rng — [= compe || <onpIasataara tera ‘ten <n rm Figure 1.22 : Form display after checkboxes are added Creating HTML forms using KompoZer 7 Highlighted by Pragati Computers, M. 9904167671. © Next, we need to the "Address" field. As the user enters a large text in the address field, we will keep the field type as textarea. First, create a label named "Address". Now, click Form > Text Area. This will open a Text Area Properties dialog box as shown in figure 1.23. settings Field ome: (address Rows 5 Columns: 70 Fewer Bropertios wrapMede: |pefoule = Reaconiy Obsabled Tob eden Advanced sat. Figure 1.23 : Text Area Properties dialog box Enter the Field Name. Select the rows and the columns required for the textarea, Here we have kept the rows as 5 and columns as 70. In the Initial Text field enter a suitable text which will be displayed when the form loads. Click OK button. © Next, we will insert the "City" field. Add a label for the city field. The user will be asked to select the city from the drop down menu, So we need to create the city field using selection list option. Click Form > Selection List: This will open a Selection List Properties dialog box as shown in figure 1.24. 7 hnmedabad -shmedsbd pon ‘ald Ootion Tec ahtedibad Remove Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. pyaneed Ss Figure 1.24: Selection List Properties dialog box 18 ‘Computer Studies : 12 ‘Type the name "city" in the List Name box and press Add Option button. Next, type “Ahmedabad” in the Text field. Again press Add option to add the city "Baroda". Likewise, add the city "Rajkot" and "Surat". Remember, to select the option “Initially Selected” when adding the Rajkot city. Click OK button. Figure 1.25 shows the Selection List Properties dialog for the added cities. (CEs Ahmedabad aiedabed saroda Beroda aot Rejbot surat surat ‘option Add option ‘Add Group, alia: (Soret Initially setected Disabled Remove ore uy ‘advanced Eat Figure 1.25 : Selection List Properties dialog box for various cities ‘Next, we will add the "Submit" button. Click Form > Form Field. From the drop down menu select Submit Button. Enter text Submit in Field Name and Field Value text box respectively. Click OK button. © Similarly we will add the "Reset" button. From the drop down menu select Reset Button. Enter text Reset in Field Name and Field Value text box respectively. Click OK button, The final form in the normal will be as shown in figure 1.26. Registration Form a Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. a aT ‘Figure 1.26 : Form displayed in normal view Creating HTML forms using KompoZer 19 Highlighted by Pragati Computers, M. 9904167671. ‘Save the file with name "example2". Figure 1.27 shows the preview mode of the form. few Eat vw wade #4) Registration Form sO) | Fox None eae nine - ‘None nae sine Fete Htoy Singing Basing ates cy Par | rane su} net) [wis | a — ‘bts boom deem Figure 1.27 : Form displayed in preview mode Figure 1.28 Shows the registration form as seen in the browser. Registration Form FicstName Middle Name Last Nae Gender * Malo Female Mosby Singing ~ Dancing ~ Reaing Addeons city ia Figure 1.28 : Form displayed in Browser Observe that the form background is white colored. If you want to give a background color to the form, go to Format > Page Colors and Background. This will open a dialog box as shown, in figure 1.29. 20 Computer Studies : 12 Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. CE Page Colors Reader's default colors (Don't set colors in page) @ [Use custom cole Normattext: (ll) | Normal text Link text: me races: Visited nk tent: (mm) | ACHE ink text sackground: = | Visited tink text Activelinkitext: [mm Background Image: s Advanced Edit... oK Figure 1.29 : Page Colors and Background dislog box Select "Use custom colors" option. Click the background option and sclect the color of your choice from the Block Background Color dialog box as seen in figure 1.30. Click OK button. This will lead you back to the dialog box shown in figure 1.29. Again click OK button. Rete tinnes Predefined colors: a kT FF __bstpicked color Hue: [o Y Red: (204 Hex | wccecce Saturation: |0 J Green: 204 Name: Brightress: | 208 J Be 204 7) Transparent Cancel Figure 1.30 : Background color selection ‘After selecting the color the form will look as shown in figure 1.31. Creating HTML forms using KompoZer a Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. aye y ee ae st. es ale ake een i @ isinleriheatal|M ele x 186 a |= stems, “we t = eave so = Registration Form a ‘Middle Niwe [ taetame kr 6a Fea 3 othe Shing Busey = Reon ame om fake — seal! jes [saan +n RET m= Figure 1.31 : Form displayed in preview mode after adding background color View the form using the browser and observe the change in the background color. EXERCISE 1. What is a Form ? List the elements used to create forms in HTML. 2, State the use of Input element in HTML forms. Write about the different attributes of input tag. What is the purpose of textarea element in HTML forms ? Write about select and option element. List the various toolbars seen in the Kompozer interface. Which are the two attributes of form? Explain. 2 Computer Studies : 12 Highlighted by Pragati Computers, M. 9904167671. 7. Choose the most appropriate option from those given below : (1) Which of the following is a container used to collect different kinds of inputs from the user. @ Form (B) Webpage © Tet @ = Input (2) Which of the following element is used to create an HTML form ? (@ Textarea (6) Form (© Select and Option (4) Input (3) Which of the following is the tag used to implement form element ? @ <form... </form> (®) <form>... <form> (© <form>... </form> @ <fim>... <frm> (4) Which of the following attribute of form is used to specify where to send the form data when the form is submitted ? < = NS NS © © N N © © = = tT tT [=] So oa oa o o = = ao a i i 2 @ method —() ation) sit @ inge £ 2 (5) Which of the following attribute of form specifies the HTTP method to be used when a £ sending the data ? £ ° (@®) sibmit. (6) action (©) method @ ing ° oO (©) Which of the following values are used by method attribute ? oO s @ GET and POST (b) GET and SET s s (©) GET and PUT (@ SET and POST S © (7). Which of the following method allows only a limited amount of information to be sent © a at a time? a > @ Ger (® Post © ser @ Pur > 2 (©) Which of the following method sends the data asa block through the HITP transaction? “<2 3 @ GET (®) SET (© PUT @ Post 3 = (9) Which of the following attribute of the input element specifies the field that is to be created = om in the form ? oO = @ Input © Type (© Name @ Vabe = o) (10) Which of the following element allows multi-line text input ? 3) = @ Textarea) Input (© Select and Option (4) Form = (11) Which of the following element is used to create a drop down list or menu in a form ? (@ Input (b) Textarea (© Select @ Form Creating HTML forms using KompoZer 23 (13) Which of the following is a free open source web development IDE ? @ HIML (®) Kompozer — (c)_Scite @ Base (14) Which of the following stands for "WYSIWYG" ? (@ When You See Is When You Get (6) What You See Is When You Get (©) What You See Is What You Get (4) When You Sec Is What You Get LABORATORY EXERCISE Create a form for student's personal details. Create a feedback form for the guests who visit your school. ePpe You had gone for a vacation with your parents; the tour operator has asked you to give reviews of your trip. Create a form for the same. Highlighted by Pragati Computers, M. 9904167671. Highlighted by Pragati Computers, M. 9904167671. “4 Computer Studies : 12</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/807429310/WIDT-UNIT-II" 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">WIDT UNIT-II</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/807429310/149x198/04551eecf2/1734861501?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/807429310/298x396/8dd8223bd4/1734861501?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">WIDT UNIT-II</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/758898615/ch-1-creating-HTML-forms-using-Kompozer" 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 1 Creating HTML Forms Using Kompozer</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/758898615/149x198/038b8e1280/1723615462?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/758898615/298x396/ff955fd7a6/1723615462?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 1 Creating HTML Forms Using Kompozer</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/669005599/CSS-FORMS" 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">CSS Forms</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/669005599/149x198/98c5a3836a/1710523090?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/669005599/298x396/2b1783e790/1710523090?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">CSS Forms</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/836995731/Computer-highlight-ch-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">Computer highlight ch-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/836995731/149x198/4a4939289c/1741484105?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/836995731/298x396/5870c36225/1741484105?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">Computer highlight ch-1</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/873547287/Module-6-HTML-Forms" 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">Module 6 - HTML Forms</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/873547287/149x198/1067ce22de/1749444222?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/873547287/298x396/5b07eb869a/1749444222?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">Module 6 - HTML Forms</div><div class="_3UuYwh zs8qzW">63 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/861703802/Material-cd02a502-c026-41df-859c-205a2b57c664" 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">Material_cd02a502-c026-41df-859c-205a2b57c664</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/861703802/149x198/5b795f4ae8/1747240237?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/861703802/298x396/f657ab171d/1747240237?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">Material_cd02a502-c026-41df-859c-205a2b57c664</div><div class="_3UuYwh zs8qzW">74 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/859601949/Chapter-10-Final" 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 Final</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/859601949/149x198/91a749408a/1746820772?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/859601949/298x396/881c151a0f/1746820772?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 Final</div><div class="_3UuYwh zs8qzW">42 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/861765162/HTML-Chapter-4-Forms" 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 Chapter 4 Forms</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/861765162/149x198/314cafc8c2/1747249699?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/861765162/298x396/04e6f41007/1747249699?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 Chapter 4 Forms</div><div class="_3UuYwh zs8qzW">73 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/497600566/HTML-FORMS-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">HTML Forms: © Krupa Shah</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/497600566/149x198/c724f135c8/1710558529?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/497600566/298x396/30c3752702/1710558529?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 Forms: © Krupa Shah</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/presentation/797388501/Lesson-6-Forms-in-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 6 Forms in 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/797388501/149x198/ba2e8b0f4f/1732673689?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/797388501/298x396/fd9683ae9f/1732673689?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 6 Forms in HTML</div><div class="_3UuYwh zs8qzW">48 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/797388503/Lesson-6-Forms-in-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 6 Forms in 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/797388503/149x198/098fbf5880/1732673618?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/797388503/298x396/421755b628/1732673618?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 6 Forms in HTML</div><div class="_3UuYwh zs8qzW">48 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/677481029/Scan-10-Oct-23-19-38-22" 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">Scan 10 Oct 23 19 38 22</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/677481029/149x198/abe74230fb/1716567423?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/677481029/298x396/9a7dd5592c/1716567423?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">Scan 10 Oct 23 19 38 22</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/731133564/Ch3htmlpartII" 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 3 Htmlpart II</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/731133564/149x198/41ac38d4c8/1715330383?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/731133564/298x396/b7fff172cc/1715330383?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 3 Htmlpart II</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/816524275/Unit-II-Widt-Pre" 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 - II(Widt) Pre</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/816524275/149x198/0b794656a2/1737038476?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/816524275/298x396/610f2d2af7/1737038476?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 - II(Widt) Pre</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/presentation/841242212/Chapter-01" 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 01</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/841242212/149x198/25eaaf90cb/1742439842?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/841242212/298x396/96c357359d/1742439842?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 01</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/817416322/Lecture-04" 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 04</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/817416322/149x198/5823c68fd2/1737261677?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/817416322/298x396/190cfc5673/1737261677?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 04</div><div class="_3UuYwh zs8qzW">34 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/754757118/HTMLForm3" 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">HTMLForm 3</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/754757118/149x198/694fb91258/1722375471?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/754757118/298x396/2b42b2237f/1722375471?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">HTMLForm 3</div><div class="_3UuYwh zs8qzW">32 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/752212288/part2in-unit1" 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">Part2in Unit1</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/752212288/149x198/041517bb4a/1721579831?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/752212288/298x396/59ed9434cb/1721579831?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">Part2in Unit1</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/809087495/WINSEM2024-25-CBS3014-ETH-VL2024250505176-2025-01-03-Reference-Material-I" 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">WINSEM2024-25_CBS3014_ETH_VL2024250505176_2025-01-03_Reference-Material-I</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/809087495/149x198/a9b793c328/1735332069?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/809087495/298x396/3e40c87df0/1735332069?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">WINSEM2024-25_CBS3014_ETH_VL2024250505176_2025-01-03_Reference-Material-I</div><div class="_3UuYwh zs8qzW">24 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/851803687/Chapter-4" 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</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/851803687/149x198/eb47ca088f/1745132507?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/851803687/298x396/30304c71b3/1745132507?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</div><div class="_3UuYwh zs8qzW">34 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/808826287/UNIT-II-WIDT" 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 - II(WIDT)</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/808826287/149x198/dad74fa062/1735268666?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/808826287/298x396/a34ac648b3/1735268666?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 - II(WIDT)</div><div class="_3UuYwh zs8qzW">32 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/877113044/Intro-to-Forms" 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">Intro to Forms</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/877113044/149x198/b54305df95/1750149713?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/877113044/298x396/e35f27ecdb/1750149713?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">Intro to Forms</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/presentation/820711952/yahxee-5th-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 5th 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/820711952/149x198/a365c21333/1737991959?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/820711952/298x396/c37b1c5abc/1737991959?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 5th 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/703875183/2nd-Q-Week-7" 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">2nd Q. Week 7</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/703875183/149x198/7bccd15548/1710574141?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/703875183/298x396/338d72df4d/1710574141?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">2nd Q. Week 7</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/presentation/857194958/Chapter03-HTML-Forms" 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">Chapter03 HTML Forms</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/857194958/149x198/f564087343/1746372067?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/857194958/298x396/0843632f27/1746372067?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">Chapter03 HTML Forms</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/825732529/CS-Grade-10-Design-Theory-Develop-a-website-design-layout-in-a-graphic-editor-taking-into-account-the-principles-of-web-ergonomics-Presentation" 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">CS Grade 10 Design Theory Develop a website design layout in a graphic editor, taking into account the principles of web-ergonomics Presentation</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/825732529/149x198/f109d932f8/1739071919?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/825732529/298x396/ac33858e1d/1739071919?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">CS Grade 10 Design Theory Develop a website design layout in a graphic editor, taking into account the principles of web-ergonomics Presentation</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/document/638078767/Unit-4-Forms" 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 4 Forms</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/638078767/149x198/427a00456d/1710588523?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/638078767/298x396/abb4853c9d/1710588523?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 4 Forms</div><div class="_3UuYwh zs8qzW">37 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/692450217/WT-HTML-XHTML-Forms-04" 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">WT-HTML & XHTML - Forms-04</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/692450217/149x198/cef3b0031d/1710558003?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/692450217/298x396/244a472ebd/1710558003?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">WT-HTML & XHTML - Forms-04</div><div class="_3UuYwh zs8qzW">32 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/811219530/forms-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">forms_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/811219530/149x198/0712a6de24/1735921765?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/811219530/298x396/bddf810d7a/1735921765?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">forms_html</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/document/784135575/Week-7-8" 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 7 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/784135575/149x198/61a5cf2238/1729854016?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/784135575/298x396/3cf4c00367/1729854016?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 7 8</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/858151338/Working-with-forms" 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">Working with forms</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/858151338/149x198/ce7d3c8aba/1746548564?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/858151338/298x396/6e6a9b1bea/1746548564?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">Working with forms</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/document/667338603/html-form-tag" 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 Form Tag</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/667338603/149x198/bb274543e4/1710542059?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/667338603/298x396/ae215f19ec/1710542059?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 Form Tag</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/816933940/pdf-and-assignemnt-6th-day-form" 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">pdf and assignemnt\6th day form</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/816933940/149x198/9ca3809a3c/1737128750?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/816933940/298x396/7f59829be3/1737128750?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">pdf and assignemnt\6th day form</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/661467877/6-Forms" 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">6 - Forms</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/661467877/149x198/905f2011d4/1690458562?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/661467877/298x396/f98ca3166d/1690458562?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">6 - Forms</div><div class="_3UuYwh zs8qzW">26 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/824279303/HTML-FORMS" 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-FORMS</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/824279303/149x198/d460902cc5/1738761972?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/824279303/298x396/0357bb71cf/1738761972?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-FORMS</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/presentation/728107121/G8-Lesson-12-Con" 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">G8 Lesson 12 Con</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/728107121/149x198/5d169d9d9e/1714495604?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/728107121/298x396/fd09904bbc/1714495604?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">G8 Lesson 12 Con</div><div class="_3UuYwh zs8qzW">15 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/801823956/web-tech-3rd-cse-unit-III-FORM" 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 tech-3rd--cse-- unit- III- FORM</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/801823956/149x198/d44b73c455/1733573639?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/801823956/298x396/b0d7228468/1733573639?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 tech-3rd--cse-- unit- III- FORM</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/807515559/Material-b45914bf-b778-4c2b-b6fe-f762d84cdd61" 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">Material_b45914bf-b778-4c2b-b6fe-f762d84cdd61</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/807515559/149x198/2a5466cf95/1734883765?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/807515559/298x396/53ab322ab5/1734883765?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">Material_b45914bf-b778-4c2b-b6fe-f762d84cdd61</div><div class="_3UuYwh zs8qzW">5 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/493736830/HTML-FORMS" 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 Forms</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/493736830/149x198/215ae9083a/1710549779?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/493736830/298x396/30340798ba/1710549779?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 Forms</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/501066415/WE-LAB-1-2k18-Part-2-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">WE LAB 1 - 2k18 (Part 2) - 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/501066415/149x198/99a4164519/1710579009?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/501066415/298x396/f50abc8af3/1710579009?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">WE LAB 1 - 2k18 (Part 2) - 2</div><div class="_3UuYwh zs8qzW">11 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/855991097/forms" 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">forms</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/855991097/149x198/118b6e8359/1746074263?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/855991097/298x396/936d7f3f79/1746074263?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">forms</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/482981835/chapter10-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">Form Basics Key Concepts Terry Ann Morris, Ed.D</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/482981835/149x198/03033767e6/1710556506?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/482981835/298x396/2df487865f/1710556506?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">Form Basics Key Concepts Terry Ann Morris, Ed.D</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/843241604/Forms-in-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">Forms in 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/843241604/149x198/63f42299e3/1742965713?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/843241604/298x396/aec94ba93f/1742965713?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">Forms in HTML</div><div class="_3UuYwh zs8qzW">6 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/585490403/HTML-Form-font-all-tag-list-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">HTML Form, Font, All Tag List</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/585490403/149x198/6f75a799f8/1710569964?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/585490403/298x396/d715b27bbc/1710569964?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 Form, Font, All Tag List</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/425065090/HTML5-Elements" 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 Elements: Web Technology Assignment - 1947234</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/425065090/149x198/46ceb3f679/1731286070?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/425065090/298x396/bf98534bc9/1731286070?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% (2)</div></div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">HTML5 Elements: Web Technology Assignment - 1947234</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/800331873/Lecture-Notes-HTML-Part-3" 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 Notes-HTML Part 3</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/800331873/149x198/dceafe6376/1733262085?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/800331873/298x396/0173744920/1733262085?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 Notes-HTML Part 3</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/798022637/X-Unit-II-Chapter-9" 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">X Unit II Chapter 9</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/798022637/149x198/226ae372e6/1732795149?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/798022637/298x396/aa50e020f0/1732795149?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">X Unit II Chapter 9</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/672540978/HTML-FORMS" 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 Forms</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/672540978/149x198/abde0df5f4/1710576048?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/672540978/298x396/e793b99b9a/1710576048?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 Forms</div><div class="_3UuYwh zs8qzW">15 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/724220988/Class-5A-HTMLForm-Elements-Form-Attributes" 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">Class-5A-HTMLForm Elements-Form Attributes</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/724220988/149x198/929ff83e78/1713427529?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/724220988/298x396/e38cd5cedb/1713427529?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">Class-5A-HTMLForm Elements-Form Attributes</div><div class="_3UuYwh zs8qzW">15 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/341328914/Forms" 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">Forms: Forms Are Used To Collect Data Inputted by A User. They Can Be Used As An</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/341328914/149x198/a0dc22379e/1489013521?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/341328914/298x396/b1ddfcba44/1489013521?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">Forms: Forms Are Used To Collect Data Inputted by A User. They Can Be Used As An</div><div class="_3UuYwh zs8qzW">7 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/695295482/HTML-Form-Notes-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">HTML Form 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/695295482/149x198/b6a206e604/1703770245?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/695295482/298x396/e13a637ffa/1703770245?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 Form Notes</div><div class="_3UuYwh zs8qzW">14 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/455820051/forms" 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 Forms: Pat Morin COMP 2405</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/455820051/149x198/91696d1776/1710527154?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/455820051/298x396/bb6adf21b9/1710527154?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 Forms: Pat Morin COMP 2405</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/824280692/HTML-Forms" 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 Forms</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/824280692/149x198/018df092fb/1738762224?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/824280692/298x396/bb4c7e8b77/1738762224?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 Forms</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/810120532/WD-Lecture-5-Supplementary" 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">WD Lecture 5-Supplementary</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/810120532/149x198/2d2303ecad/1735622304?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/810120532/298x396/a460ea578f/1735622304?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">WD Lecture 5-Supplementary</div><div class="_3UuYwh zs8qzW">4 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/635205150/Lab-Manual-03" 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">Lab Manual 03</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/635205150/149x198/d2ed282d47/1710527338?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/635205150/298x396/6bea48d4ac/1710527338?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">Lab Manual 03</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/document/758977826/form-elements" 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">Form Elements</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/758977826/149x198/492a7a08c3/1723640436?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/758977826/298x396/ae856fc83e/1723640436?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">Form Elements</div><div class="_3UuYwh zs8qzW">4 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/808652610/SHORT-NOTES-FORM-CONTROLS-FORM-TAGS-FORM-ATTRIBUTES" 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">SHORT NOTES FORM CONTROLS - FORM TAGS, FORM ATTRIBUTES</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/808652610/149x198/3f8d644ac5/1735225643?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/808652610/298x396/f55ba96c5d/1735225643?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">SHORT NOTES FORM CONTROLS - FORM TAGS, FORM ATTRIBUTES</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/document/421561480/HTML-Forms" 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">Form Attributes: HTML Forms</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/421561480/149x198/4f3479289a/1565593870?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/421561480/298x396/00d35dda20/1565593870?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">Form Attributes: HTML Forms</div><div class="_3UuYwh zs8qzW">4 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/469568623/HTML-Form-Elements-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 Form Elements 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/469568623/149x198/eba205f46c/1595063636?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/469568623/298x396/ed78ec557a/1595063636?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 Form Elements PDF</div><div class="_3UuYwh zs8qzW">11 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/836777135/Computer-highlight-CH-3" 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">Computer highlight CH-3</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/836777135/149x198/4150f23e51/1741425308?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/836777135/298x396/1e68dc9ab7/1741425308?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">Computer highlight CH-3</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/836777133/Computer-Highlight-CH-5" 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">Computer Highlight CH-5</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/836777133/149x198/e10ed961ee/1741425180?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/836777133/298x396/4ad17dee74/1741425180?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">Computer Highlight CH-5</div><div class="_3UuYwh zs8qzW">26 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/836777473/Computer-highlight-CH-4" 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">Computer highlight CH-4</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/836777473/149x198/49461dc8ea/1741425272?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/836777473/298x396/0aebdd7736/1741425272?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">Computer highlight CH-4</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/document/836778269/Computer-highlight-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">Computer highlight 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/836778269/149x198/cbd40aed1e/1741425529?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/836778269/298x396/7cebe77047/1741425529?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">Computer highlight CH-6</div><div class="_3UuYwh zs8qzW">11 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/868845637/1748512553" 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">1748512553</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/868845637/149x198/53b08fe9bd/1748512923?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/868845637/298x396/2ca33a8ec0/1748512923?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">1748512553</div><div class="_3UuYwh zs8qzW">4 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 & 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 & 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&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 & 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 & 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&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 © 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 © 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="5cdd96d5-7169-4a76-ac93-135eb1350929"><!--{"assetEnvironment":"production","bodyProps":{"admin_panel_props":null,"breadcrumbs":[],"sharing_buttons_props":{"description":"Important highlights ","id":836777102,"message":null,"private":false,"thumbnailUrl":"https://imgv2-1-f.scribdassets.com/img/document/836777102/original/5f6129ce30/1?v=1","title":"Computer highlight ch-1","twitterHashtag":null,"url":"https://www.scribd.com/document/836777102/Computer-highlight-ch-1"},"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 & Mathematics","url":"https://www.scribd.com/docs/Science-Mathematics","children":[{"dataName":"astronomy-space-sciences","name":"Astronomy & 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 & 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 & 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 & 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 & Personnel Management","url":"https://www.scribd.com/docs/Business/Human-Resources-Personnel-Management"}]},{"dataName":"career-growth","name":"Career & 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 & 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 & Money Management","url":"https://www.scribd.com/docs/Finance-Money-Management","children":[{"dataName":"accounting-bookkeeping","name":"Accounting & 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 & Financial","url":"https://www.scribd.com/docs/Law/Business-Financial"},{"dataName":"contracts-agreements","name":"Contracts & 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 & 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 & 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 & 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 & 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 & Famous","url":"https://www.scribd.com/docs/Biography-Memoir/Entertainers-and-the-Rich-Famous"}]},{"dataName":"comics-graphic-novels","name":"Comics & 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 & Discipline","url":"https://www.scribd.com/docs/Language-Arts-Discipline","children":[{"dataName":"composition-creative-writing","name":"Composition & 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 & 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 & Dishes","url":"https://www.scribd.com/docs/Cooking-Food-Wine/Courses-Dishes"}]},{"dataName":"games-activities","name":"Games & 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 & Garden","url":"https://www.scribd.com/docs/Home-Garden","children":[{"dataName":"crafts-hobbies","name":"Crafts & 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 & 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 & 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 & 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, & Spirit","url":"https://www.scribd.com/docs/Wellness/Body-Mind-Spirit"},{"dataName":"diet-nutrition","name":"Diet & Nutrition","url":"https://www.scribd.com/docs/Wellness/Diet-Nutrition"}]}]}},"scribdRebrand":true,"selectedMobileBottomTab":"document","serverTimestamp":"2025-07-13T05:03:21Z","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&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":836777102,"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,"docPageDesktopDocActions":{"testName":"doc_page_desktop_doc_actions_2025_q3","variant":"control"},"docPageMobileFrameworkV1":{"testName":"doc_page_mobile_framework_v1","variant":null},"docPageMobileOutlineThumbnailsV1":null,"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":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04MzY3\nNzcxMDImbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJkb3dubG9hZCUyMiUyQyUyMmxvZ2dlZF9p\nbiUyMiUzQWZhbHNlJTJDJTIycGxhdGZvcm0lMjIlM0ElMjJ3ZWIlMjIlN0Q=\n","audiobooksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hdWRpb2Jvb2tz\n","bestsellers_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9iZXN0c2VsbGVycw==\n","book_annotations":"L2Jvb2tfYW5ub3RhdGlvbnMvODM2Nzc3MTAy\n","booksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9ib29rcw==\n","documentsLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9kb2Nz\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy8=\n","homeLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","library_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9zYXZlZA==\n","load_recommenders":"L2RvYy1wYWdlL3JlY29tbWVuZGVycy84MzY3NzcxMDI=\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","Mw==\n","Ng==\n","Nw==\n","Nw==\n","Nw==\n","MQ==\n","MA==\n","Mg==\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":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz04MzY3NzcxMDI=\n"},"props":{"download_receipt_modal":"L2RvYy1wYWdlL2Rvd25sb2FkLXJlY2VpcHQtbW9kYWwtcHJvcHMvODM2Nzc3\nMTAy\n","paused_user_download_modal":"L2RvYy1wYWdlL3BhdXNlZC11c2VyLWRvd25sb2FkLW1vZGFsLXByb3Bz\n","pmp_login_join_modal":"L2RvYy1wYWdlL3BtcC1sb2dpbi1qb2luLW1vZGFsLXByb3BzLzgzNjc3NzEw\nMg==\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":{"836777102":false}},"personalization":{"trialDuration":null},"ratings":{"836777102":{"averageRating":0,"documentId":836777102,"downvoteCount":0,"ratingCount":0,"upvoteCount":0,"userRating":0}},"recommenders":{"viewport_bottom_recs":{"items":[{"id":807429310,"doc_uuid":"sbd/pUZISnzz7OnC608JLCKGtSM="},{"id":758898615,"doc_uuid":"sbd/LPmS7aUAAPg9W5yhWK4BNCc="},{"id":669005599,"doc_uuid":"sbd/L7yPT5dyZ8DT7eIbci9JFDg="},{"id":836995731,"doc_uuid":"sbd/8gKL95aKrLec6LLV/sEw0/E="},{"id":873547287,"doc_uuid":"sbd/ia0bXcLGHxC7ltr0366JlX4="},{"id":861703802,"doc_uuid":"sbd/PM9e6qITDUPvNqz2HmbBfAc="},{"id":859601949,"doc_uuid":"sbd/BMEZR6S6e4w6ch20Jdxo92c="},{"id":861765162,"doc_uuid":"sbd/1YNXVcr5ILcI6tDsXUbfDX8="},{"id":497600566,"doc_uuid":"sbd/kadRjAW3Ve5csv2Rh5WQoCM="},{"id":797388501,"doc_uuid":"sbd/KJovylNMOScsnVOfO/L3vk8="},{"id":797388503,"doc_uuid":"sbd/jYwpR8dGMDJyjyx96LkoVuk="},{"id":677481029,"doc_uuid":"sbd/vufv3UJmKackGCzIgsm65bA="},{"id":731133564,"doc_uuid":"sbd/cs6jd0PLBwP8LPSM7zVDg4Y="},{"id":816524275,"doc_uuid":"sbd/EcziVrde9cW0OhUuvgIrw2E="},{"id":841242212,"doc_uuid":"sbd/mGypsein68JjGJDg/8DGs9Q="},{"id":817416322,"doc_uuid":"sbd/QmMeJVdxSqVD4oEOkgMnFXs="},{"id":754757118,"doc_uuid":"sbd/NSsJ4fSdSgreTgkampsC4gY="},{"id":752212288,"doc_uuid":"sbd/JOhOmwa8YZXN8ifBq8jURLs="},{"id":809087495,"doc_uuid":"sbd/ACEDA9mQJ7EDmRFDoOdkCNY="},{"id":851803687,"doc_uuid":"sbd/9TSAtgnoxjiw0QX2QCqtyNE="},{"id":808826287,"doc_uuid":"sbd/o4PEVlhkIqm6xsPEGnirC3w="},{"id":877113044,"doc_uuid":"sbd/y8l0Z2BnVBa1iwdKGBInlX0="},{"id":820711952,"doc_uuid":"sbd/pqmUWCP0dNaycIPQFhIYpqk="},{"id":703875183,"doc_uuid":"sbd/9TBcDOwKxEQwIAC9/Bv3bRw="},{"id":857194958,"doc_uuid":"sbd/WWFdTqJP9CE2SyjIlp8IsaU="},{"id":825732529,"doc_uuid":"sbd/xogtTrzFYQQNek0Ad/WvQS8="},{"id":638078767,"doc_uuid":"sbd/uXD4q5VlwiqbhxIA6O9b1Ks="},{"id":692450217,"doc_uuid":"sbd/N2l9TzZrfookcTP9IMGjFCo="},{"id":811219530,"doc_uuid":"sbd/f8WlhHKHHFJaYZI3Kbd0Xsc="},{"id":784135575,"doc_uuid":"sbd/l7yO7ow9H4q8vz4j1Ol86Ig="},{"id":858151338,"doc_uuid":"sbd/ts7tFACTocTyJHjwE6YrcgU="},{"id":667338603,"doc_uuid":"sbd/GszNge040Hy53odjA1wyrlg="},{"id":816933940,"doc_uuid":"sbd/eZmK4aNuDPMN4Sy1mCADrL0="},{"id":661467877,"doc_uuid":"sbd/EIO74wtgdKhFK0Sh8sUaoCA="},{"id":824279303,"doc_uuid":"sbd/o4i9in/D3KHzr3xaCkgrL0Q="},{"id":728107121,"doc_uuid":"sbd/XwwE4J6pT6sbYkG5ZmtlizM="},{"id":801823956,"doc_uuid":"sbd/R1MGNHVE8sF/D2PkQmmk/kw="},{"id":807515559,"doc_uuid":"sbd/ZNycKbJgSjsdYLyiKwaDEhs="},{"id":493736830,"doc_uuid":"sbd/KbdfgdFjo/Acim7eocV0d0U="},{"id":501066415,"doc_uuid":"sbd/Q6qGXHkONJhMDJB08ffDu/k="},{"id":855991097,"doc_uuid":"sbd/KCcc3Q4xFpvcD/u4kU2Qsa4="},{"id":482981835,"doc_uuid":"sbd/KjxuzynEQABU/8s7ZouI79A="},{"id":843241604,"doc_uuid":"sbd/2J6nNhn/8OFmMePin5BvZyE="},{"id":585490403,"doc_uuid":"sbd/tqVb0BKEVyxw/6JcLjpR5h0="},{"id":425065090,"doc_uuid":"sbd/y0I9iwHkmNvINxqBFkKP2nc="},{"id":800331873,"doc_uuid":"sbd/nTa5wXjiEcZByYsXOtqaUoc="},{"id":798022637,"doc_uuid":"sbd/De2WVczFs0JL1NTcYqSIq4g="},{"id":672540978,"doc_uuid":"sbd/IAVuUUYwmeDj0fvINHuIujE="},{"id":724220988,"doc_uuid":"sbd/5CerM6R2RaUdJ/QKums0Ubs="},{"id":341328914,"doc_uuid":"sbd/qJGcqhXByyEo4pSszerzk1M="},{"id":695295482,"doc_uuid":"sbd/8snFhkS6T3a3vfEjOHjVuKs="},{"id":455820051,"doc_uuid":"sbd/bC0NZVNcnAUDOJZ8xSGZtQ8="},{"id":824280692,"doc_uuid":"sbd/uHLYxoi/Y68SFdbg9ffJGbw="},{"id":810120532,"doc_uuid":"sbd/QJaKfUb7pAoKb9ydLTd7LFk="},{"id":635205150,"doc_uuid":"sbd/sCekUaLgsmweVpWABfEFYM0="},{"id":758977826,"doc_uuid":"sbd/pTBtqZdgEIRavddwoIVQLsk="},{"id":808652610,"doc_uuid":"sbd/IxodHqMKdUPesTt6n1dyXi4="},{"id":421561480,"doc_uuid":"sbd/Ld6EDXOElrSSdOt20JKl6eU="},{"id":469568623,"doc_uuid":"sbd/ilhTnbDbyGpstOooCC5CMRo="},{"id":836777135,"doc_uuid":"sbd/tw4WK8Lt41b/vZzXEhEo97c="},{"id":836777133,"doc_uuid":"sbd/NuHp7o5JtCJotHieYX4ZJ4U="},{"id":836777473,"doc_uuid":"sbd/y4QiIHb4go79vrEM4ZNkIsI="},{"id":836778269,"doc_uuid":"sbd/gZAw/rZx8yZCtiHbgzGB3/E="},{"id":868845637,"doc_uuid":"sbd/Z0ivhVoj/AxohRvcFpYRisg="}],"ids":[807429310,758898615,669005599,836995731,873547287,861703802,859601949,861765162,497600566,797388501,797388503,677481029,731133564,816524275,841242212,817416322,754757118,752212288,809087495,851803687,808826287,877113044,820711952,703875183,857194958,825732529,638078767,692450217,811219530,784135575,858151338,667338603,816933940,661467877,824279303,728107121,801823956,807515559,493736830,501066415,855991097,482981835,843241604,585490403,425065090,800331873,798022637,672540978,724220988,341328914,695295482,455820051,824280692,810120532,635205150,758977826,808652610,421561480,469568623,836777135,836777133,836777473,836778269,868845637],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/7KLKzo/CONkRoOxEuyOh454=","module_id":"sbd/HgLly/9hjvNzMiwz42ZIkrc=","widget_name":"viewport_bottom","track_id":"scroll_recs"}},"list_recommenders":{"items":[{"id":807429310,"doc_uuid":"sbd/v0CSp1B/obrGAFOe7Z1Bihk="},{"id":758898615,"doc_uuid":"sbd/tYGavl9xvw/0V/TbZahcBTQ="},{"id":669005599,"doc_uuid":"sbd/IUYHuZ5ThLBQKkvjC/AKLKM="},{"id":836995731,"doc_uuid":"sbd/0exdh8neVBzq0n6K8kByyg4="},{"id":873547287,"doc_uuid":"sbd/mKFXumhQLeE3skclKOg6034="},{"id":861703802,"doc_uuid":"sbd//8lJ8ajX9uMTgADpGcFBT64="},{"id":859601949,"doc_uuid":"sbd/Hd0Dsr7s384PsQw2EqYM1VI="},{"id":861765162,"doc_uuid":"sbd/sHLRr3C1OT58j98aodHnZX0="},{"id":497600566,"doc_uuid":"sbd/g9jINdVTN2PPFdRRIfAVKEI="},{"id":797388501,"doc_uuid":"sbd/U4HDDO1agU5BDPGs4LBh8L0="},{"id":797388503,"doc_uuid":"sbd/7PtNyd4qTHHeweHVwsB5u2E="},{"id":677481029,"doc_uuid":"sbd/TGPA/yk1D/gMk0evXj9JlbQ="},{"id":731133564,"doc_uuid":"sbd/Kn3BfdEf3pMqjn537V3v3CA="},{"id":816524275,"doc_uuid":"sbd/HiE7opywQPF9c6ufChKTy0w="},{"id":841242212,"doc_uuid":"sbd/415j1r7K597oxEfcW8wFXlU="},{"id":817416322,"doc_uuid":"sbd/0ckzloxfXD3FdBgk34j60w8="},{"id":754757118,"doc_uuid":"sbd/QwJ4xoMDVMxUvSShcOGrNa8="},{"id":752212288,"doc_uuid":"sbd/CnH7KcG2xh1f3kFNKjoxMsE="},{"id":809087495,"doc_uuid":"sbd/iWc7uEOT87x/2V2ScvBONio="},{"id":851803687,"doc_uuid":"sbd/S9K1SuDP0wobO8LStr2gRPs="},{"id":808826287,"doc_uuid":"sbd/HMigdhd6gjFHmkWUW2D0bwM="},{"id":877113044,"doc_uuid":"sbd/DzVV11G9VFHvXJYcy7CbXQk="},{"id":820711952,"doc_uuid":"sbd/jtZhnY02nhuPctJsNu6LahU="},{"id":703875183,"doc_uuid":"sbd/WOTyq0fbN3xez/77TJCu9wA="},{"id":857194958,"doc_uuid":"sbd/fTOWVKWGKPuhmJo2SopgO10="},{"id":825732529,"doc_uuid":"sbd/hmS4rmiJP8EnOBJg4PW7xFU="},{"id":638078767,"doc_uuid":"sbd/cMnHpMoN9TMNR36NS4XbHKc="},{"id":692450217,"doc_uuid":"sbd/kcLrsB9/PXd4ijiwqrpeB/s="},{"id":811219530,"doc_uuid":"sbd/v1xvyCfsIPSpgs9jlCyAr3c="},{"id":784135575,"doc_uuid":"sbd/nl2P0F3wkCF7AmxV7IhOJs8="},{"id":858151338,"doc_uuid":"sbd/p1fJjJNuiAXjKOSshOAvQW0="},{"id":667338603,"doc_uuid":"sbd/BbNjUQjXA8uPyKxYU4e8ypA="},{"id":816933940,"doc_uuid":"sbd/iJ14COGnUs1n8iLPUtsbvQg="},{"id":661467877,"doc_uuid":"sbd/P97EkvAvEcYGxHswd45RrX8="},{"id":824279303,"doc_uuid":"sbd/8NRmviGv2NOBntLPyTBg3ME="},{"id":728107121,"doc_uuid":"sbd/SUA4AEC/HP/K/JiSBk/mo88="},{"id":801823956,"doc_uuid":"sbd/QqqMaCX13edbcrbhO07M4Rk="},{"id":807515559,"doc_uuid":"sbd/1bRYSc120TX7ECDQFew/KeM="},{"id":493736830,"doc_uuid":"sbd/TiJcmUA3KCkyD4evnbdmuaY="},{"id":501066415,"doc_uuid":"sbd/d1IO3Urr6O88ziDSwXtn6HQ="},{"id":855991097,"doc_uuid":"sbd/PB9r3pLn9CXji1MUlfrwX8w="},{"id":482981835,"doc_uuid":"sbd/l/LWgn2/i8kAa0MiLJNxaFY="},{"id":843241604,"doc_uuid":"sbd/WxlXGyFcwPkDgSLTho2H0ZU="},{"id":585490403,"doc_uuid":"sbd/NCcSLua6msOVlk5tTR0gQ4k="},{"id":425065090,"doc_uuid":"sbd/G4RjU/CxuC4C41SVFUDtnfM="},{"id":800331873,"doc_uuid":"sbd/jmnPWjSSdi5i8/TEe6pGd/I="},{"id":798022637,"doc_uuid":"sbd/lRZXm4KYawDPsns2EQXXimk="},{"id":672540978,"doc_uuid":"sbd/T6O902rMaI7pIBs1F8pkPx4="},{"id":724220988,"doc_uuid":"sbd/IlWFgmJ4P/mLddB1nl09JXc="},{"id":341328914,"doc_uuid":"sbd/VeqpFeChwb/CZl57UEPHlu4="},{"id":695295482,"doc_uuid":"sbd/22CNRWFAlqHdOkh5Bdk9Dss="},{"id":455820051,"doc_uuid":"sbd/not0VyotTsVMpofEmB154x8="},{"id":824280692,"doc_uuid":"sbd/Bj0XZRNVo9Nk0wjHlavgPVc="},{"id":810120532,"doc_uuid":"sbd/lzCA65RlGMMLYAlLr8TJmds="},{"id":635205150,"doc_uuid":"sbd/mch7goKCI7YbJLGkuhaPA6s="},{"id":758977826,"doc_uuid":"sbd/B77VVqa8BV7/NgZPCliNLTg="},{"id":808652610,"doc_uuid":"sbd/Bn84GBzfq8R3OKAeI8MOUVg="},{"id":421561480,"doc_uuid":"sbd/N8v8m2QS6OhbDkiY6qVvDBQ="},{"id":469568623,"doc_uuid":"sbd/JvYWsmGjMzssOBB4rl3EfUE="},{"id":836777135,"doc_uuid":"sbd/5DUqS3zDwqj72RMexmbGqy8="},{"id":836777133,"doc_uuid":"sbd/Jq4LwzWJ0wjE9S9d0KeYcr0="},{"id":836777473,"doc_uuid":"sbd/5bWZarie94YQqWH7MyPv2VU="},{"id":836778269,"doc_uuid":"sbd/kf1u1XE0uU4zHjOCYiw6UMk="},{"id":868845637,"doc_uuid":"sbd/k1W580JFaiMRNrWgxBHQ4Qo="}],"ids":[807429310,758898615,669005599,836995731,873547287,861703802,859601949,861765162,497600566,797388501,797388503,677481029,731133564,816524275,841242212,817416322,754757118,752212288,809087495,851803687,808826287,877113044,820711952,703875183,857194958,825732529,638078767,692450217,811219530,784135575,858151338,667338603,816933940,661467877,824279303,728107121,801823956,807515559,493736830,501066415,855991097,482981835,843241604,585490403,425065090,800331873,798022637,672540978,724220988,341328914,695295482,455820051,824280692,810120532,635205150,758977826,808652610,421561480,469568623,836777135,836777133,836777473,836778269,868845637],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/7KLKzo/CONkRoOxEuyOh454=","module_id":"sbd/dErRfz2WsQgm13gqysOYaas=","widget_name":"recommender_list","track_id":"doc_page_user_experience_top"}},"documents":{"341328914":{"author":"proj2me160","author_url":"https://www.scribd.com/user/8784935/proj2me160","categories":[],"description":"Formulários HTML","id":341328914,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":7,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/341328914/298x396/b1ddfcba44/1489013521?v=1","run_time":0,"short_title":"Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/341328914/149x198/a0dc22379e/1489013521?v=1","title":"Forms: Forms Are Used To Collect Data Inputted by A User. They Can Be Used As An","type":"document","url":"https://www.scribd.com/document/341328914/Forms","views":"54"},"421561480":{"author":"Nelum","author_url":"https://www.scribd.com/user/321042777/Nelum","categories":[],"description":"HTML forms allow users to interact with a web page","id":421561480,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":4,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/421561480/298x396/00d35dda20/1565593870?v=1","run_time":0,"short_title":"Form Attributes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/421561480/149x198/4f3479289a/1565593870?v=1","title":"Form Attributes: HTML Forms","type":"document","url":"https://www.scribd.com/document/421561480/HTML-Forms","views":"83"},"425065090":{"author":"Abhi","author_url":"https://www.scribd.com/user/392073389/Abhi","categories":[],"description":"htmL 5","id":425065090,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/425065090/298x396/bf98534bc9/1731286070?v=1","run_time":0,"short_title":"HTML5 Elements","static_rating":{"rating":5,"count":2,"up_count":2},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/425065090/149x198/46ceb3f679/1731286070?v=1","title":"HTML5 Elements: Web Technology Assignment - 1947234","type":"document","url":"https://www.scribd.com/document/425065090/HTML5-Elements","views":"188"},"455820051":{"author":"Manoj Kathri","author_url":"https://www.scribd.com/user/486848998/Manoj-Kathri","categories":[],"description":"","id":455820051,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":20,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/455820051/298x396/bb6adf21b9/1710527154?v=1","run_time":0,"short_title":"HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/455820051/149x198/91696d1776/1710527154?v=1","title":"HTML Forms: Pat Morin COMP 2405","type":"document","url":"https://www.scribd.com/document/455820051/forms","views":"49"},"469568623":{"author":"Alex Orozco","author_url":"https://www.scribd.com/user/518595154/Alex-Orozco","categories":[],"description":null,"id":469568623,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":11,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/469568623/298x396/ed78ec557a/1595063636?v=1","run_time":0,"short_title":"HTML Form Elements PDF","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/469568623/149x198/eba205f46c/1595063636?v=1","title":"HTML Form Elements PDF","type":"document","url":"https://www.scribd.com/document/469568623/HTML-Form-Elements-pdf","views":"287"},"482981835":{"author":"mohamed abdulle","author_url":"https://www.scribd.com/user/530485690/mohamed-abdulle","categories":[],"description":"","id":482981835,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":29,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/482981835/298x396/2df487865f/1710556506?v=1","run_time":0,"short_title":"Form Basics Key Concepts Terry Ann Morris, Ed.D","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/482981835/149x198/03033767e6/1710556506?v=1","title":"Form Basics Key Concepts Terry Ann Morris, Ed.D","type":"document","url":"https://www.scribd.com/presentation/482981835/chapter10-html","views":"46"},"493736830":{"author":"Ian Lamayo","author_url":"https://www.scribd.com/user/457838118/Ian-Lamayo","categories":[],"description":"","id":493736830,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/493736830/298x396/30340798ba/1710549779?v=1","run_time":0,"short_title":"HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/493736830/149x198/215ae9083a/1710549779?v=1","title":"HTML Forms","type":"document","url":"https://www.scribd.com/presentation/493736830/HTML-FORMS","views":"40"},"497600566":{"author":"BCASEM517HIMALAY","author_url":"https://www.scribd.com/user/522077489/BCASEM517HIMALAY","categories":[],"description":"tht6ur","id":497600566,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":79,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/497600566/298x396/30c3752702/1710558529?v=1","run_time":0,"short_title":"HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/497600566/149x198/c724f135c8/1710558529?v=1","title":"HTML Forms: © Krupa Shah","type":"document","url":"https://www.scribd.com/presentation/497600566/HTML-FORMS-1","views":"46"},"501066415":{"author":"Muhammad Ahmad","author_url":"https://www.scribd.com/user/545747268/Muhammad-Ahmad","categories":[],"description":"Introduction to web Engineering","id":501066415,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":11,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/501066415/298x396/f50abc8af3/1710579009?v=1","run_time":0,"short_title":"WE LAB 1 - 2k18 (Part 2) - 2","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/501066415/149x198/99a4164519/1710579009?v=1","title":"WE LAB 1 - 2k18 (Part 2) - 2","type":"document","url":"https://www.scribd.com/document/501066415/WE-LAB-1-2k18-Part-2-2","views":"67"},"585490403":{"author":"SWABHIMAN SINGH PARIDA","author_url":"https://www.scribd.com/user/624102640/SWABHIMAN-SINGH-PARIDA","categories":[],"description":"vmnbb","id":585490403,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":25,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/585490403/298x396/d715b27bbc/1710569964?v=1","run_time":0,"short_title":"HTML Form, Font, All Tag List","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/585490403/149x198/6f75a799f8/1710569964?v=1","title":"HTML Form, Font, All Tag List","type":"document","url":"https://www.scribd.com/document/585490403/HTML-Form-font-all-tag-list-1","views":"103"},"635205150":{"author":"anjiya ali","author_url":"https://www.scribd.com/user/597899117/anjiya-ali","categories":[],"description":"A lab manual for university work","id":635205150,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/635205150/298x396/6bea48d4ac/1710527338?v=1","run_time":0,"short_title":"Lab Manual 03","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/635205150/149x198/d2ed282d47/1710527338?v=1","title":"Lab Manual 03","type":"document","url":"https://www.scribd.com/document/635205150/Lab-Manual-03","views":"101"},"638078767":{"author":"Portgas D Sam","author_url":"https://www.scribd.com/user/663239889/Portgas-D-Sam","categories":[],"description":"","id":638078767,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":37,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/638078767/298x396/abb4853c9d/1710588523?v=1","run_time":0,"short_title":"Unit 4 Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/638078767/149x198/427a00456d/1710588523?v=1","title":"Unit 4 Forms","type":"document","url":"https://www.scribd.com/document/638078767/Unit-4-Forms","views":"54"},"661467877":{"author":"Nighat Ghafor Ghaznawi","author_url":"https://www.scribd.com/user/680869247/Nighat-Ghafor-Ghaznawi","categories":[],"description":null,"id":661467877,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":26,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/661467877/298x396/f98ca3166d/1690458562?v=1","run_time":0,"short_title":"6 - Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/661467877/149x198/905f2011d4/1690458562?v=1","title":"6 - Forms","type":"document","url":"https://www.scribd.com/presentation/661467877/6-Forms","views":"26"},"667338603":{"author":"atul","author_url":"https://www.scribd.com/user/685900623/atul","categories":[],"description":"","id":667338603,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/667338603/298x396/ae215f19ec/1710542059?v=1","run_time":0,"short_title":"HTML Form Tag","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/667338603/149x198/bb274543e4/1710542059?v=1","title":"HTML Form Tag","type":"document","url":"https://www.scribd.com/document/667338603/html-form-tag","views":"63"},"669005599":{"author":"Raghuram Bh","author_url":"https://www.scribd.com/user/351910565/Raghuram-Bh","categories":[],"description":"","id":669005599,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/669005599/298x396/2b1783e790/1710523090?v=1","run_time":0,"short_title":"CSS Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/669005599/149x198/98c5a3836a/1710523090?v=1","title":"CSS Forms","type":"document","url":"https://www.scribd.com/document/669005599/CSS-FORMS","views":"160"},"672540978":{"author":"Krisha Kanzaria","author_url":"https://www.scribd.com/user/691065663/Krisha-Kanzaria","categories":[],"description":"","id":672540978,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":15,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/672540978/298x396/e793b99b9a/1710576048?v=1","run_time":0,"short_title":"HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/672540978/149x198/abde0df5f4/1710576048?v=1","title":"HTML Forms","type":"document","url":"https://www.scribd.com/document/672540978/HTML-FORMS","views":"37"},"677481029":{"author":"saisinare19","author_url":"https://www.scribd.com/user/696174246/saisinare19","categories":[],"description":null,"id":677481029,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":47,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/677481029/298x396/9a7dd5592c/1716567423?v=1","run_time":0,"short_title":"Scan 10 Oct 23 19 38 22","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/677481029/149x198/abe74230fb/1716567423?v=1","title":"Scan 10 Oct 23 19 38 22","type":"document","url":"https://www.scribd.com/document/677481029/Scan-10-Oct-23-19-38-22","views":"23"},"692450217":{"author":"GANAPATHI RAM","author_url":"https://www.scribd.com/user/580239183/GANAPATHI-RAM","categories":[],"description":"","id":692450217,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":32,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/692450217/298x396/244a472ebd/1710558003?v=1","run_time":0,"short_title":"WT-HTML & XHTML - Forms-04","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/692450217/149x198/cef3b0031d/1710558003?v=1","title":"WT-HTML & XHTML - Forms-04","type":"document","url":"https://www.scribd.com/presentation/692450217/WT-HTML-XHTML-Forms-04","views":"29"},"695295482":{"author":"ashwitharamavath.2009","author_url":"https://www.scribd.com/user/713916764/ashwitharamavath-2009","categories":[],"description":null,"id":695295482,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":14,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/695295482/298x396/e13a637ffa/1703770245?v=1","run_time":0,"short_title":"HTML Form Notes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/695295482/149x198/b6a206e604/1703770245?v=1","title":"HTML Form Notes","type":"document","url":"https://www.scribd.com/document/695295482/HTML-Form-Notes-1","views":"49"},"703875183":{"author":"erwinlisingmd","author_url":"https://www.scribd.com/user/706258007/erwinlisingmd","categories":[],"description":"HTML Forms ICT Grade 8","id":703875183,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":33,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/703875183/298x396/338d72df4d/1710574141?v=1","run_time":0,"short_title":"2nd Q. Week 7","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/703875183/149x198/7bccd15548/1710574141?v=1","title":"2nd Q. Week 7","type":"document","url":"https://www.scribd.com/presentation/703875183/2nd-Q-Week-7","views":"41"},"724220988":{"author":"lakshmiskumar25","author_url":"https://www.scribd.com/user/741125564/lakshmiskumar25","categories":[],"description":"","id":724220988,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":15,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/724220988/298x396/e38cd5cedb/1713427529?v=1","run_time":0,"short_title":"Class-5A-HTMLForm Elements-Form Attributes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/724220988/149x198/929ff83e78/1713427529?v=1","title":"Class-5A-HTMLForm Elements-Form Attributes","type":"document","url":"https://www.scribd.com/document/724220988/Class-5A-HTMLForm-Elements-Form-Attributes","views":"53"},"728107121":{"author":"amerol.220438","author_url":"https://www.scribd.com/user/708878289/amerol-220438","categories":[],"description":null,"id":728107121,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":15,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/728107121/298x396/fd09904bbc/1714495604?v=1","run_time":0,"short_title":"G8 Lesson 12 Con","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/728107121/149x198/5d169d9d9e/1714495604?v=1","title":"G8 Lesson 12 Con","type":"document","url":"https://www.scribd.com/presentation/728107121/G8-Lesson-12-Con","views":"16"},"731133564":{"author":"tayeanimaw7","author_url":"https://www.scribd.com/user/747672034/tayeanimaw7","categories":[],"description":"","id":731133564,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":50,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/731133564/298x396/b7fff172cc/1715330383?v=1","run_time":0,"short_title":"CH 3 Htmlpart II","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/731133564/149x198/41ac38d4c8/1715330383?v=1","title":"CH 3 Htmlpart II","type":"document","url":"https://www.scribd.com/document/731133564/Ch3htmlpartII","views":"30"},"752212288":{"author":"Chandrika Surya","author_url":"https://www.scribd.com/user/357300635/Chandrika-Surya","categories":[],"description":"","id":752212288,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/752212288/298x396/59ed9434cb/1721579831?v=1","run_time":0,"short_title":"Part2in Unit1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/752212288/149x198/041517bb4a/1721579831?v=1","title":"Part2in Unit1","type":"document","url":"https://www.scribd.com/document/752212288/part2in-unit1","views":"25"},"754757118":{"author":"CLARKS BLAIR","author_url":"https://www.scribd.com/user/678607640/CLARKS-BLAIR","categories":[],"description":null,"id":754757118,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":32,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/754757118/298x396/2b42b2237f/1722375471?v=1","run_time":0,"short_title":"HTMLForm 3","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/754757118/149x198/694fb91258/1722375471?v=1","title":"HTMLForm 3","type":"document","url":"https://www.scribd.com/document/754757118/HTMLForm3","views":"62"},"758898615":{"author":"surbhiu","author_url":"https://www.scribd.com/user/773272391/surbhiu","categories":[],"description":"","id":758898615,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":20,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/758898615/298x396/ff955fd7a6/1723615462?v=1","run_time":0,"short_title":"CH 1 Creating HTML Forms Using Kompozer","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/758898615/149x198/038b8e1280/1723615462?v=1","title":"CH 1 Creating HTML Forms Using Kompozer","type":"document","url":"https://www.scribd.com/document/758898615/ch-1-creating-HTML-forms-using-Kompozer","views":"323"},"758977826":{"author":"Joseph Sadiwa","author_url":"https://www.scribd.com/user/642747723/Joseph-Sadiwa","categories":[],"description":"","id":758977826,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":4,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/758977826/298x396/ae856fc83e/1723640436?v=1","run_time":0,"short_title":"Form Elements","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/758977826/149x198/492a7a08c3/1723640436?v=1","title":"Form Elements","type":"document","url":"https://www.scribd.com/document/758977826/form-elements","views":"25"},"784135575":{"author":"fredo gaming","author_url":"https://www.scribd.com/user/678142059/fredo-gaming","categories":[],"description":"Web development lecture","id":784135575,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/784135575/298x396/3cf4c00367/1729854016?v=1","run_time":0,"short_title":"Week 7 8","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/784135575/149x198/61a5cf2238/1729854016?v=1","title":"Week 7 8","type":"document","url":"https://www.scribd.com/document/784135575/Week-7-8","views":"34"},"797388501":{"author":"obadiah frost","author_url":"https://www.scribd.com/user/670559112/obadiah-frost","categories":[],"description":null,"id":797388501,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":48,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/797388501/298x396/fd9683ae9f/1732673689?v=1","run_time":0,"short_title":"Lesson 6 Forms in HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/797388501/149x198/ba2e8b0f4f/1732673689?v=1","title":"Lesson 6 Forms in HTML","type":"document","url":"https://www.scribd.com/presentation/797388501/Lesson-6-Forms-in-HTML","views":"32"},"797388503":{"author":"obadiah frost","author_url":"https://www.scribd.com/user/670559112/obadiah-frost","categories":[],"description":null,"id":797388503,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":48,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/797388503/298x396/421755b628/1732673618?v=1","run_time":0,"short_title":"Lesson 6 Forms in HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/797388503/149x198/098fbf5880/1732673618?v=1","title":"Lesson 6 Forms in HTML","type":"document","url":"https://www.scribd.com/document/797388503/Lesson-6-Forms-in-HTML","views":"25"},"798022637":{"author":"Sai Pranav Tipparaju","author_url":"https://www.scribd.com/user/642146538/Sai-Pranav-Tipparaju","categories":[],"description":"","id":798022637,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":13,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/798022637/298x396/aa50e020f0/1732795149?v=1","run_time":0,"short_title":"X Unit II Chapter 9","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/798022637/149x198/226ae372e6/1732795149?v=1","title":"X Unit II Chapter 9","type":"document","url":"https://www.scribd.com/document/798022637/X-Unit-II-Chapter-9","views":"17"},"800331873":{"author":"seif","author_url":"https://www.scribd.com/user/329094783/seif","categories":[],"description":"HTML","id":800331873,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":10,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/800331873/298x396/0173744920/1733262085?v=1","run_time":0,"short_title":"Lecture Notes-HTML Part 3","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/800331873/149x198/dceafe6376/1733262085?v=1","title":"Lecture Notes-HTML Part 3","type":"document","url":"https://www.scribd.com/document/800331873/Lecture-Notes-HTML-Part-3","views":"10"},"801823956":{"author":"Raj Maurya","author_url":"https://www.scribd.com/user/814972801/Raj-Maurya","categories":[],"description":"","id":801823956,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/801823956/298x396/b0d7228468/1733573639?v=1","run_time":0,"short_title":"web tech-3rd--cse-- unit- III- FORM","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/801823956/149x198/d44b73c455/1733573639?v=1","title":"web tech-3rd--cse-- unit- III- FORM","type":"document","url":"https://www.scribd.com/document/801823956/web-tech-3rd-cse-unit-III-FORM","views":"28"},"807429310":{"author":"SATYA","author_url":"https://www.scribd.com/user/288110993/SATYA","categories":[],"description":"","id":807429310,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":47,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/807429310/298x396/8dd8223bd4/1734861501?v=1","run_time":0,"short_title":"WIDT UNIT-II","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/807429310/149x198/04551eecf2/1734861501?v=1","title":"WIDT UNIT-II","type":"document","url":"https://www.scribd.com/document/807429310/WIDT-UNIT-II","views":"133"},"807515559":{"author":"bhavikan1979","author_url":"https://www.scribd.com/user/815189743/bhavikan1979","categories":[],"description":null,"id":807515559,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":5,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/807515559/298x396/53ab322ab5/1734883765?v=1","run_time":0,"short_title":"Material_b45914bf-b778-4c2b-b6fe-f762d84cdd61","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/807515559/149x198/2a5466cf95/1734883765?v=1","title":"Material_b45914bf-b778-4c2b-b6fe-f762d84cdd61","type":"document","url":"https://www.scribd.com/document/807515559/Material-b45914bf-b778-4c2b-b6fe-f762d84cdd61","views":"16"},"808652610":{"author":"Shree Akshitha Vimala Saravanan","author_url":"https://www.scribd.com/user/563528004/Shree-Akshitha-Vimala-Saravanan","categories":[],"description":"Html forms , tags and attributes","id":808652610,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":3,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/808652610/298x396/f55ba96c5d/1735225643?v=1","run_time":0,"short_title":"SHORT NOTES FORM CONTROLS - FORM TAGS, FORM ATTRIBUTES","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/808652610/149x198/3f8d644ac5/1735225643?v=1","title":"SHORT NOTES FORM CONTROLS - FORM TAGS, FORM ATTRIBUTES","type":"document","url":"https://www.scribd.com/document/808652610/SHORT-NOTES-FORM-CONTROLS-FORM-TAGS-FORM-ATTRIBUTES","views":"12"},"808826287":{"author":"Arun","author_url":"https://www.scribd.com/user/465112585/Arun","categories":[],"description":"Web technology","id":808826287,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":32,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/808826287/298x396/a34ac648b3/1735268666?v=1","run_time":0,"short_title":"UNIT - II(WIDT)","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/808826287/149x198/dad74fa062/1735268666?v=1","title":"UNIT - II(WIDT)","type":"document","url":"https://www.scribd.com/document/808826287/UNIT-II-WIDT","views":"14"},"809087495":{"author":"ananaeygarg","author_url":"https://www.scribd.com/user/760298054/ananaeygarg","categories":[],"description":"","id":809087495,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":24,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/809087495/298x396/3e40c87df0/1735332069?v=1","run_time":0,"short_title":"WINSEM2024-25_CBS3014_ETH_VL2024250505176_2025-01-03_Reference-Material-I","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/809087495/149x198/a9b793c328/1735332069?v=1","title":"WINSEM2024-25_CBS3014_ETH_VL2024250505176_2025-01-03_Reference-Material-I","type":"document","url":"https://www.scribd.com/document/809087495/WINSEM2024-25-CBS3014-ETH-VL2024250505176-2025-01-03-Reference-Material-I","views":"16"},"810120532":{"author":"hossain.fahad2001","author_url":"https://www.scribd.com/user/804996915/hossain-fahad2001","categories":[],"description":null,"id":810120532,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":4,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/810120532/298x396/a460ea578f/1735622304?v=1","run_time":0,"short_title":"WD Lecture 5-Supplementary","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/810120532/149x198/2d2303ecad/1735622304?v=1","title":"WD Lecture 5-Supplementary","type":"document","url":"https://www.scribd.com/document/810120532/WD-Lecture-5-Supplementary","views":"16"},"811219530":{"author":"palakarora10107","author_url":"https://www.scribd.com/user/815345982/palakarora10107","categories":[],"description":"Html forms","id":811219530,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/811219530/298x396/bddf810d7a/1735921765?v=1","run_time":0,"short_title":"forms_html","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/811219530/149x198/0712a6de24/1735921765?v=1","title":"forms_html","type":"document","url":"https://www.scribd.com/presentation/811219530/forms-html","views":"19"},"816524275":{"author":"Vishnu Rajeev","author_url":"https://www.scribd.com/user/105373657/Vishnu-Rajeev","categories":[],"description":null,"id":816524275,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/816524275/298x396/610f2d2af7/1737038476?v=1","run_time":0,"short_title":"Unit - II(Widt) Pre","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/816524275/149x198/0b794656a2/1737038476?v=1","title":"Unit - II(Widt) Pre","type":"document","url":"https://www.scribd.com/document/816524275/Unit-II-Widt-Pre","views":"17"},"816933940":{"author":"umairahmed342.mu","author_url":"https://www.scribd.com/user/827779868/umairahmed342-mu","categories":[],"description":"Html, css project","id":816933940,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":22,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/816933940/298x396/7f59829be3/1737128750?v=1","run_time":0,"short_title":"pdf and assignemnt\\6th day form","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/816933940/149x198/9ca3809a3c/1737128750?v=1","title":"pdf and assignemnt\\6th day form","type":"document","url":"https://www.scribd.com/document/816933940/pdf-and-assignemnt-6th-day-form","views":"14"},"817416322":{"author":"jibransarwari2","author_url":"https://www.scribd.com/user/828115497/jibransarwari2","categories":[],"description":"i want to download this book","id":817416322,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":34,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/817416322/298x396/190cfc5673/1737261677?v=1","run_time":0,"short_title":"Lecture 04","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/817416322/149x198/5823c68fd2/1737261677?v=1","title":"Lecture 04","type":"document","url":"https://www.scribd.com/document/817416322/Lecture-04","views":"7"},"820711952":{"author":"samson jinadu","author_url":"https://www.scribd.com/user/546957801/samson-jinadu","categories":[],"description":"webdesign html5","id":820711952,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/820711952/298x396/c37b1c5abc/1737991959?v=1","run_time":0,"short_title":"yahxee 5th class","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/820711952/149x198/a365c21333/1737991959?v=1","title":"yahxee 5th class","type":"document","url":"https://www.scribd.com/presentation/820711952/yahxee-5th-class","views":"14"},"824279303":{"author":"3385","author_url":"https://www.scribd.com/user/710263790/3385","categories":[],"description":"","id":824279303,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/824279303/298x396/0357bb71cf/1738761972?v=1","run_time":0,"short_title":"HTML-FORMS","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/824279303/149x198/d460902cc5/1738761972?v=1","title":"HTML-FORMS","type":"document","url":"https://www.scribd.com/document/824279303/HTML-FORMS","views":"8"},"824280692":{"author":"3385","author_url":"https://www.scribd.com/user/710263790/3385","categories":[],"description":null,"id":824280692,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/824280692/298x396/bb4c7e8b77/1738762224?v=1","run_time":0,"short_title":"HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/824280692/149x198/018df092fb/1738762224?v=1","title":"HTML Forms","type":"document","url":"https://www.scribd.com/document/824280692/HTML-Forms","views":"11"},"825732529":{"author":"aliyakydyrbekova0128","author_url":"https://www.scribd.com/user/828022479/aliyakydyrbekova0128","categories":[],"description":"","id":825732529,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":21,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/825732529/298x396/ac33858e1d/1739071919?v=1","run_time":0,"short_title":"CS Grade 10 Design Theory Develop a website design layout in a graphic editor, taking into account the principles of web-ergonomics Presentation","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/825732529/149x198/f109d932f8/1739071919?v=1","title":"CS Grade 10 Design Theory Develop a website design layout in a graphic editor, taking into account the principles of web-ergonomics Presentation","type":"document","url":"https://www.scribd.com/presentation/825732529/CS-Grade-10-Design-Theory-Develop-a-website-design-layout-in-a-graphic-editor-taking-into-account-the-principles-of-web-ergonomics-Presentation","views":"10"},"836777133":{"author":"studymate003","author_url":"https://www.scribd.com/user/760746514/studymate003","categories":[],"description":"Important highlights","id":836777133,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":26,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836777133/298x396/4ad17dee74/1741425180?v=1","run_time":0,"short_title":"Computer Highlight CH-5","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836777133/149x198/e10ed961ee/1741425180?v=1","title":"Computer Highlight CH-5","type":"document","url":"https://www.scribd.com/document/836777133/Computer-Highlight-CH-5","views":"26"},"836777135":{"author":"studymate003","author_url":"https://www.scribd.com/user/760746514/studymate003","categories":[],"description":"Important highlights","id":836777135,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836777135/298x396/1e68dc9ab7/1741425308?v=1","run_time":0,"short_title":"Computer highlight CH-3","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/836777135/149x198/4150f23e51/1741425308?v=1","title":"Computer highlight CH-3","type":"document","url":"https://www.scribd.com/document/836777135/Computer-highlight-CH-3","views":"13"},"836777473":{"author":"studymate003","author_url":"https://www.scribd.com/user/760746514/studymate003","categories":[],"description":"Important highlights","id":836777473,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836777473/298x396/0aebdd7736/1741425272?v=1","run_time":0,"short_title":"Computer highlight CH-4","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836777473/149x198/49461dc8ea/1741425272?v=1","title":"Computer highlight CH-4","type":"document","url":"https://www.scribd.com/document/836777473/Computer-highlight-CH-4","views":"26"},"836778269":{"author":"studymate003","author_url":"https://www.scribd.com/user/760746514/studymate003","categories":[],"description":"Important highlights","id":836778269,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":11,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836778269/298x396/7cebe77047/1741425529?v=1","run_time":0,"short_title":"Computer highlight CH-6","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/836778269/149x198/cbd40aed1e/1741425529?v=1","title":"Computer highlight CH-6","type":"document","url":"https://www.scribd.com/document/836778269/Computer-highlight-CH-6","views":"5"},"836995731":{"author":"NEEL AGRAWAL","author_url":"https://www.scribd.com/user/618524389/NEEL-AGRAWAL","categories":[],"description":"","id":836995731,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836995731/298x396/5870c36225/1741484105?v=1","run_time":0,"short_title":"Computer highlight ch-1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/836995731/149x198/4a4939289c/1741484105?v=1","title":"Computer highlight ch-1","type":"document","url":"https://www.scribd.com/document/836995731/Computer-highlight-ch-1","views":"32"},"841242212":{"author":"epjeetpandya002133","author_url":"https://www.scribd.com/user/848253914/epjeetpandya002133","categories":[],"description":null,"id":841242212,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/841242212/298x396/96c357359d/1742439842?v=1","run_time":0,"short_title":"Chapter 01","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/841242212/149x198/25eaaf90cb/1742439842?v=1","title":"Chapter 01","type":"document","url":"https://www.scribd.com/presentation/841242212/Chapter-01","views":"2"},"843241604":{"author":"hridya.anime69420","author_url":"https://www.scribd.com/user/811790450/hridya-anime69420","categories":[],"description":"answer key","id":843241604,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":6,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/843241604/298x396/aec94ba93f/1742965713?v=1","run_time":0,"short_title":"Forms in HTML","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/843241604/149x198/63f42299e3/1742965713?v=1","title":"Forms in HTML","type":"document","url":"https://www.scribd.com/document/843241604/Forms-in-HTML","views":"8"},"851803687":{"author":"lutfullah","author_url":"https://www.scribd.com/user/386121650/lutfullah","categories":[],"description":null,"id":851803687,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":34,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/851803687/298x396/30304c71b3/1745132507?v=1","run_time":0,"short_title":"Chapter 4","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/851803687/149x198/eb47ca088f/1745132507?v=1","title":"Chapter 4","type":"document","url":"https://www.scribd.com/presentation/851803687/Chapter-4","views":"18"},"855991097":{"author":"studylets138","author_url":"https://www.scribd.com/user/803362790/studylets138","categories":[],"description":"","id":855991097,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":17,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/855991097/298x396/936d7f3f79/1746074263?v=1","run_time":0,"short_title":"forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/855991097/149x198/118b6e8359/1746074263?v=1","title":"forms","type":"document","url":"https://www.scribd.com/document/855991097/forms","views":"10"},"857194958":{"author":"abadhan_sabyasachi","author_url":"https://www.scribd.com/user/24790851/abadhan-sabyasachi","categories":[],"description":null,"id":857194958,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/857194958/298x396/0843632f27/1746372067?v=1","run_time":0,"short_title":"Chapter03 HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/857194958/149x198/f564087343/1746372067?v=1","title":"Chapter03 HTML Forms","type":"document","url":"https://www.scribd.com/presentation/857194958/Chapter03-HTML-Forms","views":"15"},"858151338":{"author":"sreeee437","author_url":"https://www.scribd.com/user/861357745/sreeee437","categories":[],"description":"","id":858151338,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":18,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/858151338/298x396/6e6a9b1bea/1746548564?v=1","run_time":0,"short_title":"Working with forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/858151338/149x198/ce7d3c8aba/1746548564?v=1","title":"Working with forms","type":"document","url":"https://www.scribd.com/presentation/858151338/Working-with-forms","views":"11"},"859601949":{"author":"ghazalkhouri004","author_url":"https://www.scribd.com/user/862420765/ghazalkhouri004","categories":[],"description":null,"id":859601949,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":42,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/859601949/298x396/881c151a0f/1746820772?v=1","run_time":0,"short_title":"Chapter 10 Final","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/859601949/149x198/91a749408a/1746820772?v=1","title":"Chapter 10 Final","type":"document","url":"https://www.scribd.com/presentation/859601949/Chapter-10-Final","views":"6"},"861703802":{"author":"chaku130978","author_url":"https://www.scribd.com/user/748553012/chaku130978","categories":[],"description":null,"id":861703802,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":74,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/861703802/298x396/f657ab171d/1747240237?v=1","run_time":0,"short_title":"Material_cd02a502-c026-41df-859c-205a2b57c664","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/861703802/149x198/5b795f4ae8/1747240237?v=1","title":"Material_cd02a502-c026-41df-859c-205a2b57c664","type":"document","url":"https://www.scribd.com/document/861703802/Material-cd02a502-c026-41df-859c-205a2b57c664","views":"18"},"861765162":{"author":"Shehar Bano","author_url":"https://www.scribd.com/user/643030653/Shehar-Bano","categories":[],"description":null,"id":861765162,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":73,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/861765162/298x396/04e6f41007/1747249699?v=1","run_time":0,"short_title":"HTML Chapter 4 Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/861765162/149x198/314cafc8c2/1747249699?v=1","title":"HTML Chapter 4 Forms","type":"document","url":"https://www.scribd.com/document/861765162/HTML-Chapter-4-Forms","views":"6"},"868845637":{"author":"studymate003","author_url":"https://www.scribd.com/user/760746514/studymate003","categories":[],"description":null,"id":868845637,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":4,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/868845637/298x396/2ca33a8ec0/1748512923?v=1","run_time":0,"short_title":"1748512553","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/868845637/149x198/53b08fe9bd/1748512923?v=1","title":"1748512553","type":"document","url":"https://www.scribd.com/document/868845637/1748512553","views":"10"},"873547287":{"author":"jenty1006","author_url":"https://www.scribd.com/user/872335971/jenty1006","categories":[],"description":null,"id":873547287,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":63,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/873547287/298x396/5b07eb869a/1749444222?v=1","run_time":0,"short_title":"Module 6 - HTML Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/873547287/149x198/1067ce22de/1749444222?v=1","title":"Module 6 - HTML Forms","type":"document","url":"https://www.scribd.com/document/873547287/Module-6-HTML-Forms","views":"4"},"877113044":{"author":"tusboy2019","author_url":"https://www.scribd.com/user/874960232/tusboy2019","categories":[],"description":null,"id":877113044,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":16,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/877113044/298x396/e35f27ecdb/1750149713?v=1","run_time":0,"short_title":"Intro to Forms","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/877113044/149x198/b54305df95/1750149713?v=1","title":"Intro to Forms","type":"document","url":"https://www.scribd.com/presentation/877113044/Intro-to-Forms","views":"2"}}},"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":"461936fb-f45d-42ab-b72b-b3f33254e3a2","sift_science_js_key":"cbcb9f556a"}}},"routes":{"accountPath":"L2FjY291bnQtc2V0dGluZ3M=\n","accountSettingsPath":"L2FjY291bnQtc2V0dGluZ3M=\n","androidStoreUrl":"aHR0cHM6Ly9wbGF5Lmdvb2dsZS5jb20vc3RvcmUvYXBwcy9kZXRhaWxzP2lk\nPWNvbS5zY3JpYmQuYXBwLnJlYWRlcjAuZG9jcw==\n","appPromoDeepLink":"aHR0cHM6Ly9zY3JpYmQucGFnZS5saW5rLz9hbXY9MTMuMTYmYXBuPWNvbS5z\nY3JpYmQuYXBwLnJlYWRlcjAuZG9jcyZpYmk9Y29tLnNjcmliZC5kb2NzJmlt\ndj0xMy4xNiZpc2k9NjQ0ODgwNzcxNCZsaW5rPWh0dHBzJTNBJTJGJTJGd3d3\nLnNjcmliZC5jb20lMkZkb2N1bWVudCUyRjgzNjc3NzEwMiUyRkNvbXB1dGVy\nLWhpZ2hsaWdodC1jaC0xJTNGcmVmZXJyZXIlM0R1dG1fY2FtcGFpZ24lM0Rk\nb2NfcGFnZSUyNnV0bV9zb3VyY2UlM0Rkb2NfcGFnZSUyNnV0bV9tZWRpdW0l\nM0R3ZWImc3Q9Q29tcHV0ZXIlMjBoaWdobGlnaHQlMjBjaC0xJnNpPWh0dHBz\nOi8vaW1ndjItMS1mLnNjcmliZGFzc2V0cy5jb20vaW1nL2RvY3VtZW50Lzgz\nNjc3NzEwMi9vcmlnaW5hbC8yMTZ4Mjg3LzcwN2U3ZWQ2ZTcvMT92PTE=\n","audiobooksAllCategoriesPath":"L2F1ZGlvYm9va3MvY2F0ZWdvcmllcw==\n","audiobooksPath":"L2F1ZGlvYm9va3M=\n","archivePlansCopyActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04MzY3\nNzcxMDImbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJjb3B5JTIyJTJDJTIybG9nZ2VkX2luJTIy\nJTNBZmFsc2UlMkMlMjJwbGF0Zm9ybSUyMiUzQSUyMndlYiUyMiU3RA==\n","archivePlansDownloadActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz04MzY3\nNzcxMDImbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\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/ZG9jX2lkPTgz\nNjc3NzEwMg==\n","originalsRoute":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vb3JpZ2luYWxz\n","paymentFixUrl":null,"pinterestUrl":"aHR0cHM6Ly93d3cucGludGVyZXN0LmNvbS9zY3JpYmQv\n","podcastsAllCategories":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cy9jYXRlZ29yaWVz\n","podcastsPath":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cw==\n","profilePath":"","progressiveProfileModalPropsPath":"L2RvYy1wYWdlL3Byb2dyZXNzaXZlLXByb2ZpbGUtbW9kYWwvODM2Nzc3MTAy\n","progressiveProfileModalDismissPath":"L3Byb2dyZXNzaXZlX3Byb2ZpbGVfbW9kYWwvZGlzbWlzc19tb2RhbA==\n","rate":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yYXRpbmdzLmpzb24=\n","readingHistoryDataPath":"L3lvdXItYWNjb3VudC9yZWFkaW5nX2hpc3RvcnlfZGF0YQ==\n","referralsUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWZlcnJhbHM=\n","rootPath":"Lw==\n","rootUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","savedPath":"L3NhdmVk\n","searchPath":"L3NlYXJjaA==\n","sheetMusicPath":"L3NoZWV0bXVzaWM=\n","statsPath":null,"subscribeUrl":"L2FyY2hpdmUvcG1wX2NoZWNrb3V0P2RvYz04MzY3NzcxMDImZG9jX2lkPTgz\nNjc3NzEwMiZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIycG1wJTIy\nJTJDJTIyYWN0aW9uJTIyJTNBJTIyc3RhcnRfdHJpYWwlMjIlMkMlMjJsb2dn\nZWRfaW4lMjIlM0FmYWxzZSUyQyUyMnBsYXRmb3JtJTIyJTNBJTIyd2ViJTIy\nJTJDJTIyYnJvd3Nlcl91dWlkJTIyJTNBJTIyNDYxOTM2ZmItZjQ1ZC00MmFi\nLWI3MmItYjNmMzMyNTRlM2EyJTIyJTdE\n","supportPath":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbQ==\n","twitterUrl":"aHR0cHM6Ly90d2l0dGVyLmNvbS9zY3JpYmQv\n","unpauseAccountUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hY2NvdW50L3VucGF1c2U/ZnJvbT1o\ndHRwcyUzQSUyRiUyRnd3dy5zY3JpYmQuY29tJTJGZG9jdW1lbnQlMkY4MzY3\nNzcxMDIlMkZDb21wdXRlci1oaWdobGlnaHQtY2gtMQ==\n","incentivizedUploadPath":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz04MzY3NzcxMDI=\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\nJTJDMjQmYXV0aF90b2tlbj13OFczZkt3dTJWa2EycEZBJTJCeGxGNmNsYW9Z\nTSUzRCZhdXRoZW50aWNpdHlfdG9rZW49VjYzUUpqN2hPenYxZHc3bUxKc2RO\nbmVTLVdPb05PTUFDWXVWNTFLVGhvXzF2Z3pVdl9iMXZnUlUtamRNMnNIV0VC\nZENaVlphV2tNSklIY2tjVU9FTWcmZXhwaXJlcz0xNzUyOTg3ODAxJndvcmRE\nb2N1bWVudElkPTgzNjc3NzEwMiZ3b3JkVXBsb2FkSWQ9ODYwMTA2MTY0\n","topic_search_path":"L2RvYy1wYWdlL3RvcGljX3NlYXJjaA==\n"},"user":{"browserUuid":"461936fb-f45d-42ab-b72b-b3f33254e3a2","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":"studymate003","copyright_name":"© All Rights Reserved","description":"Important highlights","downloadCount":0,"edit_path":null,"embed_modal_props_path":"/doc-page/embed-modal-props/836777102","extensions":["pdf"],"extracted_title":null,"flag_document_modal_props_path":"/doc-page/flag-document-modal-props/836777102","formats":[{"extension":"pdf","filesize":"2.22 MB"}],"generatedDescription":"The document provides a comprehensive guide on creating HTML forms using KompoZer, detailing the various elements such as input fields, text areas, and selection options. It explains the structure of HTML forms, including the use of action and method attributes, and introduces the KompoZer interface for web development. Additionally, it outlines the steps to create a simple registration form and highlights the advantages of using an IDE for web development.","hasFreeAccessFromUploader":false,"hasScrambledFonts":false,"id":836777102,"image_url":"https://imgv2-2-f.scribdassets.com/img/document/836777102/149x198/dd3c37e369/1741425165?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":24,"page_dimensions":{"width":681,"height":962},"page_orientation":"portrait","publisher_info":{"is_author":false,"name":"studymate003","url":"https://www.scribd.com/user/760746514/studymate003"},"reportContentModalPropsPath":"/doc-page/report-content-modal-props/836777102","retina_image_url":"https://imgv2-1-f.scribdassets.com/img/document/836777102/298x396/cfd0964b7b/1741425165?v=1","secret_password":null,"short_title":"Computer highlight ch-1","showFullDoc":false,"show_archive_paywall":true,"signup_context":null,"title":"Computer highlight ch-1","translation":{"original":null,"translations":[]},"type":"view_restricted","url":"https://www.scribd.com/document/836777102/Computer-highlight-ch-1","views":"28","doc_topics":null,"remainingCopyCredits":0},"X_Request_ID":"6b1592546bfa314bd9d1805b098f0ab5bd0d8cec3e4f42fde294cb8a328f4ce0"}--></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\",\"narrate\":\"Narrate\",\"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\",\"rewrite_for_audience\":\"Rewrite for audience\",\"shorten\":\"Shorten\",\"simplify\":\"Simplify\",\"summarize\":\"Summarize\",\"translate\":\"Translate\",\"try_advanced_search\":\"Try advanced search\",\"use_advanced_search\":\"Use advanced search\"},\"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\"},\"document_outline\":{\"document_outline\":\"Document outline\",\"document_thumbnails\":\"Document thumbnails\",\"outline\":\"Outline\",\"page_view\":\"Page view\"},\"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\":{\"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.\",\"go_to_homepage\":\"Go to homepage\",\"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\",\"redirect_notice\":\"You’ll be redirected to the homepage in \\u003cstrong\\u003e{{numberOfSeconds}}\\u003c/strong\\u003e seconds...\",\"starting_date\":\"Starting {{date}}\",\"stay_on_this_page\":\"Stay on this page\",\"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>