首页 > > 详细

辅导SENG1050、讲解HTML/CSS设计、辅导Web/HTML/CSS语言 讲解Processing|解析R语言编程

SENG1050 - Assignment 2

Outline - All Web Pages - Homepage - Data Collection Form
Farm Information Display Pages - Web Design - Coding Style - Submission - Marking
Due: 11:59pm, Friday 26th October, 2018
by 11:59pm, Saturday 27th October, 2018: -10%
by 11:59pm, Sunday 28th October, 2018: -20%
by 11:59pm, Monday 29th October, 2018: -30%
by 11:59pm, Tuesday 30th October, 2018: -40%
by 11:59pm, Wednesday 31st October, 2018: -50%
after 11:59pm, Wednesday 31st October, 2018: 0
Weight: 25% of course total.
The objectives of this assignment are

to exercise your ability to create Web pages using HTML and CSS,
to transform the XML documents from Assignment 1 into HTML using XSLT,
to test your skill in employing HTML features such as forms,
to evaluate your expertise with JavaScript for client side processing.
Warning - HTML Generating Tools

You are NOT allowed to use a HTML generating program for this assignment. This includes DreamWeaver, Microsoft Frontpage, saving to HTML from Word, etc. You must write all of the HTML tags yourself in a plain-text editor such as NotePad. Any assignments that use HTML generated from a tool will be given ZERO.

Outline

The University of Newcastle is a partner institution of the Newcastle Eco Community. As a promising student with web communication skills, you have been asked to develop a web site, Organic Farmers' Market for the Newcastle Eco Community. This site advertises organic farm businesses that have their own online ordering and delivery system.

Many smaller family farms sell produce directly from their farm. Your job is to help them!

Your task is to present the organic farms as appealingly as possible on the web.

Your assignment will have the following parts.

A Homepage
A "Data Collection" page
2 Farm pages
All pages must have good readability, consistency and navigation. Details of all of these pages are given below.

General guidelines for preparing your all web pages

All pages should be coded according to the HTML5 standard.
All pages should contain the full HTML5 document structure, including , , , and <body> .<br>All pages should use Cascading Style Sheets for visual formatting. You must use an external style file (style.css) which will define the style for all web pages you have created, Embedded (Document-level) style (where appropriate) and a few ( NOT many) inline styles.<br>All visual formatting of the Web site should be implemented using Cascading Style Sheets.<br>Use one external CSS for all web pages.<br>Use at least one id and one class selector.<br>Use at least one <div>, used to provide some interesting styling (your choice of borders, background, floating alignment, etc.)<br>Use at least one <span>, used to provide some formatting (e.g. a colour or font change) for a few words of text.<br>You should use a document-level style sheet to apply styles that are unique to the particular page (if appropriate).<br>You should only use inline styles for one-off visual effects.<br>Your assignment directory should contain a sub-directory, named images with all the image files you are using in your web pages.<br>There should be a nice background for the whole web site.<br>There should be a left side margin of 1 cm for all pages.<br>There should be hyperlinks on each of the pages that provide navigation capabilities for your site.<br>There should be hyperlinks from the index page to other pages and hyperlinks from other pages back to the index page. These links should use a relative URL.<br>Each page should also have links to every other page.<br>The text colours of a link before they are visited, after they are visited and during a user action must be different from each other. The link must appear noticibly bigger when you move the cursor over them.<br>The pages must have good readability, consistency and navigation.<br>Comments for your HTML code: Comments at the top of the file, stating the name of the file, the name of the author and the date the file was created.<br>Homepage<br><br>Your submission should contain a homepage, called index.html which you created in Assignment 1. You may need to make changes to this page, to ensure that any links to other pages in the website work, or incorporate any other updates listed in your assignment 1 feedback.<br><br>Links necessary for Homepage are:<br><br>a link to the data collection page (form);<br>a privacy policy; this is necessary as you are collecting data including personal identifying information (PII) from your guests - there is no need to actually create this page, just link to https://www.visser.com.au/blog/generic-privacy-policy-for-australian-websites/<br>Terms and Conditions; This can link to https://media.termsfeed.com/pdf/terms-and-conditions-template.pdf<br>About us; this can link to http://www.blogtyrant.com/best-about-us-pages/<br>Contact; this can link to http://www.blogtyrant.com/best-contact-us-pages/<br>Data Collection Page<br><br>This page will allow customers to provide comments and impressions about the system as well as some personal information (so there should be a link to the privacy policy on this page as well). This upload will be done as a form, which sends the information to "http://evc-cit.info/cgi-bin/echoform.cgi" when applicants click the "Submit" button. The following things need to be included on the page.<br><br>Create the form<br><br>The form needs to have at least the following things.<br><br>An appropriate level 1 heading.<br>Mandatory information about the customer:<br>a full name,<br>email<br>age range (less than 20, 20-30, 31-40, 41-50, 51-60, more than 60),<br>address,<br>more ...<br>Survey questions decided by you. Think through what you want to learn from your survey.<br>Use different types of input such as textboxes, dropdown menus, radio buttons, checkboxes and textareas (at least 1 of each).<br>Buttons to submit and clear the form.<br>Validate the form<br><br>You will write Javascript functions to validate the form (DO NOT USE HTML5 form validation attributes such as 'required').<br><br>Use JavaScript to perform client-side data validation.<br>The validation functions should check that at least three required inputs (marked with asterisks) in your form are filled out.<br>These should be different types of input (e.g., textbox, dropdown menus, radio buttons or checkboxes), so the validation will be done differently for each one.<br>The validation functions should check a valid email address (please do not use HTML5 form validation INPUT types such as INPUT type="email").<br>If the form does not pass the validation check, the user should be presented with an alert message asking them to provide the missing information or correct the wrong information.<br>The validation functions should be initiated when the form is submitted.<br><br>The structure and presentation of this page is up to you however the specifications provided here must be followed.<br><br>Farms Information Display Pages<br><br>You will be writing an XSL document to transform your XML documents from Assignment 1 into HTML. The HTML that is generated should fit in with the style of the rest of your website (eg., similar formatting, colors, etc.). You will need to use CSS in your generated HTML.<br><br>Note that all your XML documents have the same tags and DTD and therefore they can all use the same XSL document. This means you should only make 1 XSL file. The XSL should have the following:<br><br>an appropriate level 1 heading;<br>list of all the farms sorted alphabetically by the farm name:<br>farm details;<br>an image of a farm or food;<br>URL of the farm.<br>All this data must be collected from the XML documents.<br>Other relevant information that is in your XML documents.<br>Web Design<br><br>A successful website meets clearly identified goals and provides compelling content that draws your audience to your site again and again. In addition it should be easy to navigate and feature visual attractiveness.<br><br>Coding Style<br><br>Please note that your HTML code, CSS code and XSL code must be neat, clear, and commented. A clean structure is important for a site that will be maintained and updated later by someone else, who won't have your memory of how things are structured.<br><br>Other than the specifications mentioned, the way you design your page is up to you. However it should use semantically-correct tags. All your work should be validated.<br><br>Submission<br><br>Your submission should contain all the files that contribute to the Web site, including HTML, CSS, XML, XSL and image files. You must also include a README.txt file, containing your student number and a list of the files that are part of your submission.<br><br>Finally, your submission should include a completed Assignment Cover Sheet. You should download a cover sheet template, then fill in the details and include it with your submission. Note: an Assignment Cover Sheet submitted electronically is deemed to have been signed. Your assignment cannot be marked until a completed cover sheet is received.<br><br>Failure to follow submission instructions will incur a penalty.<br><br>Warning - Plagiarism<br><br>Plagiarism is defined as presenting the work of others' as if it were your own. This includes the copying of content from other people's Web pages (and other sources) without "appropriate referencing" (indicating the parts of your assignment which have been copied and where they were copied from).<br><br>If you "quote" or use other people's work in your assignments, then you must reference them appropriately. If you fail to do so you will be reported to the School's Student Academic Conduct Officer (SACO) for suspicion of plagiarism. An assignment that consists largely of work copied from elsewhere and referenced appropriately will receive very low (zero) marks.<br><br>You can find more information on the University's Policy on Student Academic Integrity in the Course Outline and at http://www.newcastle.edu.au/policylibrary/000608.html. You can find advise on quotation and appropriate referencing in the InfoSkills Web site.<br><br>The assignment is to be submitted on Blackboard via the Assignments page . To submit your files, place them all into a single .zip archive named with your student id (eg., c3012345.zip).<br><br>If you have trouble submitting, contact me as soon as you can. Failure to submit correctly is not of itself a sufficient reason to apply for Adverse Circumstances on the assignment.<br><br>Marking Guidelines<br><br>The following serves as a rough guide to how many marks are allocated to each part of the assignment.<br><br>Total Marks: 100<br><br>Overall and Design: 20<br>External Style sheet: 7<br>Homepage: 3<br>Data Collection Page: 35<br>Farms Information Display Pages: 35<br><br></span> </div> </div> <style type="text/css"> .listkeyword { color: #990099; font-size: 14px; margin:0px 0px 0px 17px; word-wrap: break-word; text-align:left; } </style> <div class="width30bi divfr"> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 联系我们</div> <div class="divfr"> </div> </div> <div> <ul> <li class="divullititle heightline25px divtal">QQ:99515681 </li> <li class="divullititle heightline25px divtal">邮箱:99515681@qq.com </li> <li class="divullititle heightline25px divtal">工作时间:8:00-21:00 </li> <li class="divullititle heightline25px divtal">微信:codinghelp</li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点文章</div> <div class="divfr"> <img src="/image/j01.jpg" width="14" height="14" alt="程序代写更多图片" /></div> <div class="divfr"> <a href="Lists-0-1.html" id="infotop2_amore" title="程序代写周排行更多">更多</a></div> </div> <div> <ul> <li class="divullititle heightline25px divtal"><a href="2024041918888528121.html" title="辅导 CS1B Spring 2024 TTH HW08讲解 Java语言" target="_blank"> 辅导 cs1b spring 2024 tth hw... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527961.html" title="讲解 Managing Financial Risk Problem Set 1讲解 留学生Matlab程序" target="_blank"> 讲解 managing financial risk... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527811.html" title="辅导 CS 0449 – Project 5: /dev/dice讲解 R语言" target="_blank"> 辅导 cs 0449 – project 5: /... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527651.html" title="辅导 ELEC 2141 Digital Circuit Design Term 1, 2024 Assignment 2讲解 留学生SQL语言" target="_blank"> 辅导 elec 2141 digital circu... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527501.html" title="讲解 CSC171 — Videogame Project讲解 留学生Java程序" target="_blank"> 讲解 csc171 — videogame pro... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877961.html" title="讲解 COMP3411 Artificial Intelligence Term 1, 2024 Assignment 3 – Nine-Board Tic-Tac-Toe讲解 留学生C/C++语言" target="_blank"> 讲解 comp3411 artificial int... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877811.html" title="讲解 STAT3061: Random Processes & Applications Assignment 1辅导 数据结构程序" target="_blank"> 讲解 stat3061: random proces... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877651.html" title="辅导 Accounting 452, Spring 2024 Assignment 2 - Earnings Quality辅导 留学生Matlab程序" target="_blank"> 辅导 accounting 452, spring ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158751.html" title="辅导 FINC5001 Foundations in Finance Semester 1, 2023讲解 Python语言程序" target="_blank"> 辅导 finc5001 foundations in... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158591.html" title="辅导 7SSMM712 – Topics in Applied Finance讲解 回归" target="_blank"> 辅导 7ssmm712 – topics in a... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158431.html" title="讲解 COM 337 - Film Studies for the Digital Age (Spring 2023-2024)辅导 C/C++程序" target="_blank"> 讲解 com 337 - film studies ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158281.html" title="辅导 MES202TC - Digital VLSI System Design and Design Automation讲解 Java语言" target="_blank"> 辅导 mes202tc - digital vlsi... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158121.html" title="辅导 Geography 2041B Distance Studies 2024辅导 留学生Matlab语言" target="_blank"> 辅导 geography 2041b distanc... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918792403121.html" title="辅导 ECOS3006 International Trade Mid-semester Exam Semester 2, 2023讲解 R程序" target="_blank"> 辅导 ecos3006 international ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918792402961.html" title="讲解 FIT5225 2024 SM1 Creating and Deploying an Image Object Detection Web Service within a Containeri" target="_blank"> 讲解 fit5225 2024 sm1 creati... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397651.html" title="讲解 CIT 593: Introduction to Computing Systems Fall 2017 Final Exam辅导 R编程" target="_blank"> 讲解 cit 593: introduction t... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397501.html" title="讲解 MATH 4931: TAKE HOME EXAM辅导 留学生Matlab语言" target="_blank"> 讲解 math 4931: take home ex... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397341.html" title="辅导 CSCI 547|INFO 533: Systems and Protocol Security and Information Assurance Assignment II调试SQL 程序" target="_blank"> 辅导 csci 547|info 533: syst... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397181.html" title="辅导 CS536-S24 Intro to PLs and Compilers Programming Assignment 5辅导 Java程序" target="_blank"> 辅导 cs536-s24 intro to pls ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397031.html" title="讲解 FIT5212 - Assignment 1辅导 留学生Python程序" target="_blank"> 讲解 fit5212 - assignment 1辅... </a> <span class="colorlan"> 2024-04-19</span> </li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点标签</div> </div> <div> <ul class="listkeyword"> <a href="Lists.aspx?wd=comp20005" title="comp20005"> comp20005 </a> <a href="Lists.aspx?wd=EEC286" title="EEC286"> eec286 </a> <a href="Lists.aspx?wd=BUSI2211" title="BUSI2211"> busi2211 </a> <a href="Lists.aspx?wd=BFF2401" title="BFF2401"> bff2401 </a> <a href="Lists.aspx?wd=FNCE90046" title="FNCE90046"> fnce90046 </a> <a href="Lists.aspx?wd=VISU2001" title="VISU2001"> visu2001 </a> <a href="Lists.aspx?wd=MANG6554" title="MANG6554"> mang6554 </a> <a href="Lists.aspx?wd=FINC6001" title="FINC6001"> finc6001 </a> <a href="Lists.aspx?wd=125785" title="125785"> 125785 </a> <a href="Lists.aspx?wd=DATA423-24S1" title="DATA423-24S1"> data423-24s1 </a> <a href="Lists.aspx?wd=ENGI 1331" title="ENGI 1331"> engi 1331 </a> <a href="Lists.aspx?wd=FINT2100" title="FINT2100"> fint2100 </a> <a href="Lists.aspx?wd=(520|600).666" title="(520|600).666"> (520|600).666 </a> <a href="Lists.aspx?wd=CAN202" title="CAN202"> can202 </a> <a href="Lists.aspx?wd=CS 61B" title="CS 61B"> cs 61b </a> <a href="Lists.aspx?wd=MAST20029" title="MAST20029"> mast20029 </a> <a href="Lists.aspx?wd=INFO20003" title="INFO20003"> info20003 </a> <a href="Lists.aspx?wd=STAT512" title="STAT512"> stat512 </a> <a href="Lists.aspx?wd=ECON3208" title="ECON3208"> econ3208 </a> <a href="Lists.aspx?wd=CMPSC311" title="CMPSC311"> cmpsc311 </a> <a href="Lists.aspx?wd=ENGG1340" title="ENGG1340"> engg1340 </a> <a href="Lists.aspx?wd=ECMT1010" title="ECMT1010"> ecmt1010 </a> <a href="Lists.aspx?wd=FIT5216" title="FIT5216"> fit5216 </a> <a href="Lists.aspx?wd=BASC0003" title="BASC0003"> basc0003 </a> <a href="Lists.aspx?wd=EE3121" title="EE3121"> ee3121 </a> <a href="Lists.aspx?wd=ACCT2002" title="ACCT2002"> acct2002 </a> <a href="Lists.aspx?wd=COMP5313" title="COMP5313"> comp5313 </a> <a href="Lists.aspx?wd=BUSI2131" title="BUSI2131"> busi2131 </a> <a href="Lists.aspx?wd=ISE529" title="ISE529"> ise529 </a> <a href="Lists.aspx?wd=ELEC372/472" title="ELEC372/472"> elec372/472 </a> <a href="Lists.aspx?wd=CSIT940/CSIT440" title="CSIT940/CSIT440"> csit940/csit440 </a> <a href="Lists.aspx?wd=CENV6141" title="CENV6141"> cenv6141 </a> <a href="Lists.aspx?wd=COMP3027/COMP3927" title="COMP3027/COMP3927"> comp3027/comp3927 </a> <a href="Lists.aspx?wd=FTEC5580" title="FTEC5580"> ftec5580 </a> <a href="Lists.aspx?wd=COMP1433" title="COMP1433"> comp1433 </a> <a href="Lists.aspx?wd=MSCI223" title="MSCI223"> msci223 </a> <a href="Lists.aspx?wd=MARK203" title="MARK203"> mark203 </a> <a href="Lists.aspx?wd=EN3098" title="EN3098"> en3098 </a> <a href="Lists.aspx?wd=EDEN1000" title="EDEN1000"> eden1000 </a> <a href="Lists.aspx?wd=ECE6483" title="ECE6483"> ece6483 </a> <a href="Lists.aspx?wd=ECON4410" title="ECON4410"> econ4410 </a> <a href="Lists.aspx?wd=MATS16302" title="MATS16302"> mats16302 </a> <a href="Lists.aspx?wd=CS 6476" title="CS 6476"> cs 6476 </a> <a href="Lists.aspx?wd=COM6521" title="COM6521"> com6521 </a> <a href="Lists.aspx?wd=COMP222" title="COMP222"> comp222 </a> <a href="Lists.aspx?wd=COMP3211" title="COMP3211"> comp3211 </a> <a href="Lists.aspx?wd=CSC1002" title="CSC1002"> csc1002 </a> <a href="Lists.aspx?wd=COMP10002" title="COMP10002"> comp10002 </a> <a href="Lists.aspx?wd=CHC6186" title="CHC6186"> chc6186 </a> <a href="Lists.aspx?wd=CS 161" title="CS 161"> cs 161 </a> <a href="Lists.aspx?wd=COMP27112" title="COMP27112"> comp27112 </a> <a href="Lists.aspx?wd=COMP282" title="COMP282"> comp282 </a> <a href="Lists.aspx?wd=SWEN20003" title="SWEN20003"> swen20003 </a> <a href="Lists.aspx?wd=COMM1190" title="COMM1190"> comm1190 </a> <a href="Lists.aspx?wd=ELEC9764" title="ELEC9764"> elec9764 </a> <a href="Lists.aspx?wd=ACFI3308" title="ACFI3308"> acfi3308 </a> <a href="Lists.aspx?wd=ACCT7101" title="ACCT7101"> acct7101 </a> <a href="Lists.aspx?wd=FIN6035" title="FIN6035"> fin6035 </a> <a href="Lists.aspx?wd=COMP2048" title="COMP2048"> comp2048 </a> <a href="Lists.aspx?wd=GEOG0163" title="GEOG0163"> geog0163 </a> <a href="Lists.aspx?wd=COMP2013" title="COMP2013"> comp2013 </a> <a href="Lists.aspx?wd=COEN 146" title="COEN 146"> coen 146 </a> <a href="Lists.aspx?wd=DTS101TC" title="DTS101TC"> dts101tc </a> <a href="Lists.aspx?wd=SEHH2042" title="SEHH2042"> sehh2042 </a> <a href="Lists.aspx?wd=COMP30023" title="COMP30023"> comp30023 </a> <a href="Lists.aspx?wd=COMP4880/8880" title="COMP4880/8880"> comp4880/8880 </a> <a href="Lists.aspx?wd=CS 455" title="CS 455"> cs 455 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </a> <a href="Lists.aspx?wd=STAT0045." title="STAT0045."> stat0045. </a> <a href="Lists.aspx?wd=FIL-30023" title="FIL-30023"> fil-30023 </a> <a href="Lists.aspx?wd=CELEN085" title="CELEN085"> celen085 </a> <a href="Lists.aspx?wd=PSYC40005" title="PSYC40005"> psyc40005 </a> <a href="Lists.aspx?wd=MATH40082" title="MATH40082"> math40082 </a> <a href="Lists.aspx?wd=ARE271" title="ARE271"> are271 </a> <a href="Lists.aspx?wd=COMP9311" title="COMP9311"> comp9311 </a> <a href="Lists.aspx?wd=EE5311" title="EE5311"> ee5311 </a> <a href="Lists.aspx?wd=IMSE2113" title="IMSE2113"> imse2113 </a> <a href="Lists.aspx?wd=Comp 2322" title="Comp 2322"> comp 2322 </a> <a href="Lists.aspx?wd=ACCT2102" title="ACCT2102"> acct2102 </a> <a href="Lists.aspx?wd=FND109" title="FND109"> fnd109 </a> <a href="Lists.aspx?wd=INT102" title="INT102"> int102 </a> <a href="Lists.aspx?wd=IS3S664" title="IS3S664"> is3s664 </a> <a href="Lists.aspx?wd=IS6153" title="IS6153"> is6153 </a> <a href="Lists.aspx?wd=DATA4000" title="DATA4000"> data4000 </a> <a href="Lists.aspx?wd=ACCFIN5034" title="ACCFIN5034"> accfin5034 </a> <a href="Lists.aspx?wd=FIT5212" title="FIT5212"> fit5212 </a> <a href="Lists.aspx?wd=CS536-S24" title="CS536-S24"> cs536-s24 </a> <a href="Lists.aspx?wd=FIT5225" title="FIT5225"> fit5225 </a> <a href="Lists.aspx?wd=ECOS3006" title="ECOS3006"> ecos3006 </a> <a href="Lists.aspx?wd=MES202TC" title="MES202TC"> mes202tc </a> <a href="Lists.aspx?wd=FINC5001" title="FINC5001"> finc5001 </a> <a href="Lists.aspx?wd=STAT3061" title="STAT3061"> stat3061 </a> <a href="Lists.aspx?wd=CSC171" title="CSC171"> csc171 </a> <a href="Lists.aspx?wd=CS1B" title="CS1B"> cs1b </a> <a href="Lists.aspx?wd=7SSMM712" title="7SSMM712"> 7ssmm712 </a> <a href="Lists.aspx?wd=BU.450.760" title="BU.450.760"> bu.450.760 </a> <a href="Lists.aspx?wd=COMP3411" title="COMP3411"> comp3411 </a> <a href="Lists.aspx?wd=CS170" title="CS170"> cs170 </a> <a href="Lists.aspx?wd=SWEN90004" title="SWEN90004"> swen90004 </a> <a href="Lists.aspx?wd=CPT206" title="CPT206"> cpt206 </a> <a href="Lists.aspx?wd=COMP5313/COMP4313—Large" title="COMP5313/COMP4313—Large"> comp5313/comp4313—large </a> <a href="Lists.aspx?wd=BL5611" title="BL5611"> bl5611 </a> <a href="Lists.aspx?wd=KXO206" title="KXO206"> kxo206 </a> <a href="Lists.aspx?wd=COMP532" title="COMP532"> comp532 </a> <a href="Lists.aspx?wd=ELEC207" title="ELEC207"> elec207 </a> <a href="Lists.aspx?wd=KXO151" title="KXO151"> kxo151 </a> <a href="Lists.aspx?wd=CS 2820" title="CS 2820"> cs 2820 </a> <a href="Lists.aspx?wd=CPT108" title="CPT108"> cpt108 </a> <a href="Lists.aspx?wd=MATH2319" title="MATH2319"> math2319 </a> <a href="Lists.aspx?wd=DTS204TC" title="DTS204TC"> dts204tc </a> <a href="Lists.aspx?wd=QM222" title="QM222"> qm222 </a> <a href="Lists.aspx?wd=COMP2511" title="COMP2511"> comp2511 </a> <a href="Lists.aspx?wd=CCS599" title="CCS599"> ccs599 </a> <a href="Lists.aspx?wd=INFS1001" title="INFS1001"> infs1001 </a> <a href="Lists.aspx?wd=MAT2355" title="MAT2355"> mat2355 </a> <a href="Lists.aspx?wd=EEEE4123" title="EEEE4123"> eeee4123 </a> <a href="Lists.aspx?wd=25721" title="25721"> 25721 </a> <a href="Lists.aspx?wd=IFN647" title="IFN647"> ifn647 </a> <a href="Lists.aspx?wd=POLS0010" title="POLS0010"> pols0010 </a> <a href="Lists.aspx?wd=HPM 573" title="HPM 573"> hpm 573 </a> <a href="Lists.aspx?wd=CS 2550" title="CS 2550"> cs 2550 </a> <a href="Lists.aspx?wd=STAT0023" title="STAT0023"> stat0023 </a> <a href="Lists.aspx?wd=CSCI 1100" title="CSCI 1100"> csci 1100 </a> <a href="Lists.aspx?wd=QBUS6860" title="QBUS6860"> qbus6860 </a> <a href="Lists.aspx?wd=COMP9417" title="COMP9417"> comp9417 </a> <a href="Lists.aspx?wd=CSE340" title="CSE340"> cse340 </a> <a href="Lists.aspx?wd=COMP2003J" title="COMP2003J"> comp2003j </a> <a href="Lists.aspx?wd=CS360" title="CS360"> cs360 </a> <a href="Lists.aspx?wd=FIN 3080" title="FIN 3080"> fin 3080 </a> <a href="Lists.aspx?wd=IERG 4080" title="IERG 4080"> ierg 4080 </a> <a href="Lists.aspx?wd=CS6238" title="CS6238"> cs6238 </a> <a href="Lists.aspx?wd=CIT 594" title="CIT 594"> cit 594 </a> <a href="Lists.aspx?wd=FINM7406" title="FINM7406"> finm7406 </a> <a href="Lists.aspx?wd=HW6" title="HW6"> hw6 </a> <a href="Lists.aspx?wd=ELEC9713" title="ELEC9713"> elec9713 </a> <a href="Lists.aspx?wd=ASB-2522" title="ASB-2522"> asb-2522 </a> <a href="Lists.aspx?wd=MSO3610" title="MSO3610"> mso3610 </a> <a href="Lists.aspx?wd=LIT301" title="LIT301"> lit301 </a> <a href="Lists.aspx?wd=MCD4540" title="MCD4540"> mcd4540 </a> <a href="Lists.aspx?wd=GEOG0030" title="GEOG0030"> geog0030 </a> <a href="Lists.aspx?wd=125.330" title="125.330"> 125.330 </a> <a href="Lists.aspx?wd=BIOL0006" title="BIOL0006"> biol0006 </a> <a href="Lists.aspx?wd=125.320" title="125.320"> 125.320 </a> <a href="Lists.aspx?wd=CS3334" title="CS3334"> cs3334 </a> <a href="Lists.aspx?wd=FIT2093" title="FIT2093"> fit2093 </a> <a href="Lists.aspx?wd=ACCT1101" title="ACCT1101"> acct1101 </a> <a href="Lists.aspx?wd=110.309" title="110.309"> 110.309 </a> <a href="Lists.aspx?wd=MASY1-GC" title="MASY1-GC"> masy1-gc </a> <a href="Lists.aspx?wd=CS314" title="CS314"> cs314 </a> <a href="Lists.aspx?wd=ELEC0048" title="ELEC0048"> elec0048 </a> <a href="Lists.aspx?wd=GDS104" title="GDS104"> gds104 </a> <a href="Lists.aspx?wd=MG5637" title="MG5637"> mg5637 </a> <a href="Lists.aspx?wd=FIT2096" title="FIT2096"> fit2096 </a> <a href="Lists.aspx?wd=MATH5905" title="MATH5905"> math5905 </a> <a href="Lists.aspx?wd=EEL4837" title="EEL4837"> eel4837 </a> <a href="Lists.aspx?wd=SEHS4515" title="SEHS4515"> sehs4515 </a> <a href="Lists.aspx?wd=Cpt S 321" title="Cpt S 321"> cpt s 321 </a> <a href="Lists.aspx?wd=ASB2522 Investment" title="ASB2522 Investment"> asb2522 investment </a> <a href="Lists.aspx?wd=MA214" title="MA214"> ma214 </a> <a href="Lists.aspx?wd=CO2104" title="CO2104"> co2104 </a> <a href="Lists.aspx?wd=MGMT2015" title="MGMT2015"> mgmt2015 </a> <a href="Lists.aspx?wd=32516" title="32516"> 32516 </a> <a href="Lists.aspx?wd=MATH32051" title="MATH32051"> math32051 </a> <a href="Lists.aspx?wd=ECON1012" title="ECON1012"> econ1012 </a> <a href="Lists.aspx?wd=MARK2052" title="MARK2052"> mark2052 </a> <a href="Lists.aspx?wd=COMP3310" title="COMP3310"> comp3310 </a> <a href="Lists.aspx?wd=ECON0019" title="ECON0019"> econ0019 </a> <a href="Lists.aspx?wd=DSCI 525" title="DSCI 525"> dsci 525 </a> <a href="Lists.aspx?wd=ABMF3184" title="ABMF3184"> abmf3184 </a> <a href="Lists.aspx?wd=APS106" title="APS106"> aps106 </a> <a href="Lists.aspx?wd=ANTC27" title="ANTC27"> antc27 </a> <a href="Lists.aspx?wd=FINM7401" title="FINM7401"> finm7401 </a> <a href="Lists.aspx?wd=ITP122" title="ITP122"> itp122 </a> <a href="Lists.aspx?wd=TECH2300" title="TECH2300"> tech2300 </a> <a href="Lists.aspx?wd=MATH3026" title="MATH3026"> math3026 </a> <a href="Lists.aspx?wd=COMP9024" title="COMP9024"> comp9024 </a> <a href="Lists.aspx?wd=CS 211" title="CS 211"> cs 211 </a> <a href="Lists.aspx?wd=36318" title="36318"> 36318 </a> <a href="Lists.aspx?wd=CAO107" title="CAO107"> cao107 </a> <a href="Lists.aspx?wd=FIT1047" title="FIT1047"> fit1047 </a> <a href="Lists.aspx?wd=IS2022" title="IS2022"> is2022 </a> <a href="Lists.aspx?wd=ICS4U" title="ICS4U"> ics4u </a> <a href="Lists.aspx?wd=2XC3" title="2XC3"> 2xc3 </a> <a href="Lists.aspx?wd=EN.540.635" title="EN.540.635"> en.540.635 </a> <a href="Lists.aspx?wd=4QQMN506" title="4QQMN506"> 4qqmn506 </a> <a href="Lists.aspx?wd=FINN3081" title="FINN3081"> finn3081 </a> <a href="Lists.aspx?wd=PHYS10362" title="PHYS10362"> phys10362 </a> <a href="Lists.aspx?wd=STA601" title="STA601"> sta601 </a> <a href="Lists.aspx?wd=EC481E" title="EC481E"> ec481e </a> <a href="Lists.aspx?wd=MATH5165" title="MATH5165"> math5165 </a> <a href="Lists.aspx?wd=CSI 2120" title="CSI 2120"> csi 2120 </a> <a href="Lists.aspx?wd=EL1205" title="EL1205"> el1205 </a> <a href="Lists.aspx?wd=COMP7250" title="COMP7250"> comp7250 </a> <a href="Lists.aspx?wd=ECOS3013" title="ECOS3013"> ecos3013 </a> <a href="Lists.aspx?wd=BEAM065" title="BEAM065"> beam065 </a> <a href="Lists.aspx?wd=INFO1113" title="INFO1113"> info1113 </a> <a href="Lists.aspx?wd=COMP2051" title="COMP2051"> comp2051 </a> <a href="Lists.aspx?wd=CSC325" title="CSC325"> csc325 </a> <a href="Lists.aspx?wd=MNE 6130" title="MNE 6130"> mne 6130 </a> <a href="Lists.aspx?wd=AI6126" title="AI6126"> ai6126 </a> </ul> </div> </div> <br /> </div> <div class="divfloatclear"> </div> <div class="bottomdiv"> <div class="width1000px divmargin0auto paddingtop20"> <div class="height30px divtal"> <a href="#" title="代写程序联系我们">联系我们</a> - QQ: 99515681 微信:codinghelp </div> <div class="height30px divtal"> © 2024 <a href="#" target="_blank" title="程序代写网技术分享">www.7daixie.com</a> <span style="display:none"> <a href="/sitemap.xml" target="_blank">站长地图</a> </span> </div> <div class="divtal"> <span class="colorlan">程序辅导网!</span> </div> <div class="paddingtop20"> </div> </div> </div> </div> </form> <style type="text/css"> .keifu { position: fixed; top: 30%; right: 0; width: 151px; _position: absolute; _top: expressiondocument.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.bottom,10)||0)-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))); z-index: 100; } </style> <script src="http://www.asgnhelp.com/js/rightfloat.js"></script> <div class="keifu"> </div> <script language="Javascript"> document.oncontextmenu=new Function("event.returnValue=false"); document.onselectstart=new Function("event.returnValue=false"); </script> </body> </html>