首页 > > 详细

CS200留学生讲解、辅导HTML,CSS编程语言、讲解css设计 解析R语言编程|辅导R语言程序

CS200 Assignment 5 Page { PAGE } of { NUMPAGES }
CS200 Assignment 5 – HTML and CSS
Due Monday February 10th 2020, 11:59 pm
Readings and Resources
On the web: { HYPERLINK "http://validator.w3.org/" } : a site that will check a web page for
faulty HTML tags
{ HYPERLINK "http://jigsaw.w3.org/css-validator/" } : a site that will check a web
page or external
CSS file for faulty CSS
{ HYPERLINK "https://www.student.cs.uwaterloo.ca/~cs200/" \l "handouts" }:
commented HTML
Texts: The Non-Designer’s Design Book, by Robin Williams, chapters 1–6, pages 117–120
Learning Web Design 4th Ed., by Jennifer Niederst
CSS Pocket Reference, by Eric Meyer, chapters 2, 4–9, 11, 12
Other Resources: http://www.w3schools.com/html/default.asp
http://{ HYPERLINK "http://www.htmlcodetutorial.com" }
{ HYPERLINK "http://www.westciv.com/style_master/academy/css_tutorial/" }
http://codeacademy.com/learn/web
Check our Pinterest page for other resources: https://www.pinterest.com/cs2000143/
Assignment Objectives
• To create a webpage for yourself using HTML and gain an understanding of how a webpage
works.
• To use tables, hyperlinks and images correctly.
• To familiarize yourself with and use Cascading Style Sheets (CSS) to format your webpages.
• To gain a stronger understanding of clients and servers and how webpages are shared.
Assignment Strategy
• This assignment must be done individually.
CS200 Assignment 5 Page { PAGE } of { NUMPAGES }
Your Tasks
For this assignment, you will be creating a small website for yourself using a text editor
(TextWrangler is available in the lab, but you can use any text editor of your choosing). Each
question contributes to creating your website. While you won’t be able to do all the questions in
the first lab, you should read through the entire assignment before beginning, to get a sense of
what you’ll be doing. In particular, read through all of question 1 before beginning.
1. [55%] Your site must include at least 4 HTML pages and at least 1 external CSS file, as
described below (the instructions for the 4th html page is in question 2). In part C you will be
applying CSS to style these webpages. It will be helpful to read through all of question 1 before
beginning, and you might want to consider all parts simultaneously, though you won’t be able
to complete all of question 1 until we’ve covered CSS in lecture.
Part A:
⎕ A page named root.html. This will be your homepage, which must include:
⎕ Your name and username at the top of your web page;
⎕ Your name as the <br>⎕ An image (such as the photo you edited for A3, or something else). Note that you may<br>only use the gif, jpeg and png image file formats in web pages.<br>⎕ Two absolute hypertext links to other web pages (ie. sites you find particularly<br>interesting);<br>⎕ A list of something;<br>⎕ A table of something;<br>⎕ A mail-to link to your UW email account;<br>⎕ This page should be visually appealing, easy to read, well designed, and consistent with<br>the guidelines from The Non-Designers Design Book. Make sure you follow the four basic<br>principles of visual design described in the book. Part B asks you to define at least 2 of<br>these basic principles and explain how you’ve applied them in root.html. You will likely<br>find this easier after learning and applying CSS in part C.<br>⎕ A relative hypertext link to each of:<br>⎕ design.html (see part B),<br>⎕ username.html (see below),<br>⎕ form.html (see question 2)<br>⎕ This file must be named root.html.<br>CS200 Assignment 5 Page { PAGE } of { NUMPAGES }<br>⎕ A page named username.html, containing the following:<br>⎕ Text of your choosing (ex. this could be more detail about something from root.html, or<br>anything else you’d like).<br>⎕ There must be a relative hypertext link from root.html to this page, as listed above.<br>While you are not required to have a relative hypertext link in design.html to go back to<br>root.html, think about why this would be a good website design choice.<br>Part B: Appearance of root.html. You will be marked for the appearance of root.html as<br>displayed in Firefox or Chrome. This might be easier to do after learning about CSS and doing<br>part C. You are also required to have the following:<br>⎕ A page named design.html, containing the following:<br>⎕ A definition of 2 of the 4 basic principles from the Non Designer’s Design Book.<br>⎕ A brief explanation (few sentences each) of how you applied these 2 principles to your<br>root.html page. Note that you should not have violated any of the 4 principles, but you<br>only have to define and explain your use of 2 of them. There will be bonus marks for<br>defining and explaining your use of the other 2 principles.<br>⎕ There must be a relative hypertext link from root.html to this page, as listed in question<br>1. While you are not required to have a relative hypertext link in design.html to go back<br>to root.html, think about why this would be a good website design choice.<br>Part C: You will now apply CSS to the webpages you just created. You can be as creative as you<br>want, as long as you follow the principles in the Non-Designer’s Design Book and satisfy the<br>following. In either root.html or username.html, you must have:<br>⎕ At least 9 distinct user-defined CSS styles defined and applied, as follows:<br>⎕ At least 3 of these must be defined in the <head> section of the page using a <style><br>tag pair.<br>⎕ At least 3 of these must be defined in styles.css, which you must link to either root.html<br>or username.html<br>⎕ At least 3 of these must use the style attribute to directly apply CSS to the contents of a<br>tag pair.<br>CS200 Assignment 5 Page { PAGE } of { NUMPAGES }<br>Notes:<br>• You must apply these 9 styles to either root.html or username.html, or you can apply<br>some in each of those pages, as long as you have 9 total and have satisfied the above<br>requirements.<br>• Root.html is marked for appearance in Part B based on the Non-Designer’s Design Book,<br>so it will be helpful to use some styles in root.html, though you can choose to use less<br>than 9 if you want, and apply the others in username.html, which will not be marked on<br>appearance.<br>• You are welcome to define and apply more than 9 styles, and you’re welcome to use<br>CSS styles in design.html and form.html (question 2) as well.<br>• While this is not required, you should also think about why you would want to link<br>styles.css to all 4 of your webpages, and consider doing so.<br>Marking<br>70% of question 1 will be marked based on the criteria listed above.<br>20% of this question will be marked based on the attractiveness of your root.html page as<br>displayed in Firefox and Chrome. This will be based on your use of the principles from<br>The Non-Designer’s Design Book, and your explanation of this in design.html.<br>10% of this question will be marked on how well organized and readable your source file is,<br>including appropriate indentation.<br>Bonus: Extra credit will be awarded for an especially attractive and creative webpage, for a<br>definition and use of the remaining design principles, for a non-trivial and interesting use<br>of JavaScript, or for entire page created in XML.<br>CS200 Assignment 5 Page { PAGE } of { NUMPAGES }<br>2. [35%] Create a file named form.html containing a web form with the following items. (Note that<br>labels are what the user of a form sees—just text—while names are what the cgi uses to identify a<br>piece of information—they are equivalent to a “field name” in a database—and values are the<br>actual data that is entered on the form.) You will need to look up the tags for some of these<br>form elements. Your form must have:<br>⎕ your name and username at the top of your web page;<br>⎕ a hidden field with the name “identity” whose value is your full name (ie. “John Smith”);<br>⎕ a one-line text input field with the label “Registration Number” and the name “idNumber”;<br>⎕ a multi-line, scrolling text input field with the label “Comments” and the name “comments”;<br>⎕ three radio buttons labeled “830 TT”, “1030 TT”, and “1430 WF” with the name “lab” that<br>submit the values “Lab101”, “Lab102” and “Lab103”<br>respectively, when selected;<br>⎕ one pop-up menu or scrolling menu with the label<br>“Application” and the name “app” that allows the user to select<br>from “Word”, “Excel”, “HTML”, “Pixel Graphics”, “Social Media”,<br>and “FileMaker”;<br>⎕ three checkboxes labeled “Macintosh”, “Windows”, and “Linux”<br>with names “mac”, “win”, and “unix”, respectively, each of<br>which returns the value “Yes” when checked;<br>⎕ a Submit button.<br>⎕ Your form should invoke the following URL using either of<br>the GET or POST methods.<br>https://www.student.cs.uwaterloo.ca/~cs200/cgi-bin/Responder.cgi<br>Clicking on the submit button of your form will cause Responder to echo back a list of the<br>names and values of the form parameters sent to it. At the right, for example, is what<br>Responder returned when sent data from the table-formatted grade request form discussed in<br>lecture (which had text fields for surname and id number, and checkboxes for assignments,<br>the midterm, the final, and the course mark).<br>CS200 Assignment 5 Page { PAGE } of { NUMPAGES }<br>4. [5%] Once you have completed Questions 1 and 2 you will move your webpages to your<br>public_html folder, by doing the following:<br>• Under your personal network drive, find the folder labeled “public_html”.<br>• Drag root.html, username.html, design.html, form.html, styles.css, and any other necessary files<br>into this folder.<br>• Your webpage should now be available at { HYPERLINK<br>"https://www.student.cs.uwaterloo.ca/~username/root.html" }, however, it will say<br>“Forbidden”, as you will now need to change the permissions on these files…<br>• Under Applications, go to Utilities and open the application Terminal.<br>• To login to Terminal type ssh followed by { HYPERLINK<br>"mailto:your_userID@linux.student.cs.uwaterloo.ca" }, where your_userID is your<br>Quest/student.cs username. For example:<br>ssh bmzister@linux.student.cs.uwaterloo.ca<br>• You might be asked if you want to continue. Type “yes”.<br>• When asked, type in your student.cs password and hit enter. Note that the cursor won’t<br>move while you type your password, but it still works.<br>• When you see [xx]% where xx is a number, you can continue typing…<br>• Type chmod -R go+rx public_html (do not copy and paste this; make sure you type it) and hit<br>Return.<br>• All of your files should now be accessible from a browser at the url:<br>{ HYPERLINK "https://www.student.cs.uwaterloo.ca/~username/root.html" }<br>Note: If you want to do this from your own machine, you will first have to connect to the server: {<br>HYPERLINK "smb://smb-files.student.cs.uwaterloo.ca" } and mount your network drive. If you<br>are doing this from off campus, you will first have to connect to UW’s VPN. Instructions on how<br>to do this can be found here: { HYPERLINK "https://uwaterloo.ca/information-systemstechnology/services/virtual-private-network-vpn/about-virtual-private-network-vpn"<br>}<br>Submission Instructions<br>• Create a folder called username_Assign5<br>• Move root.html, design.html, username.html, styles.css, form.html, and any other necessary files<br>into the folder.<br>• Compress this folder and name it username_Assign5.zip and submit it to the Assignment 5<br>DropBox on Learn.<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="2024041818089602031.html" title="讲解 Artificial Intelligence Methods (COMP2051 or AE2AIM) Spring 2024调试C/C++语言" target="_blank"> 讲解 artificial intelligence... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601871.html" title="辅导 KXO206 Database Management Systems 2024调试SQL 程序" target="_blank"> 辅导 kxo206 database managem... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601711.html" title="辅导 COMP9417 Project: Multitask Machine Learning 2024辅导 Python语言" target="_blank"> 辅导 comp9417 project: multi... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601561.html" title="辅导 BL5611 DrugDiscovery2024 Term Paper" target="_blank"> 辅导 bl5611 drugdiscovery202... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601401.html" title="辅导 COMP5313/COMP4313—Large Scale Networks S1 2024 Assignment 2讲解 C/C++程序" target="_blank"> 辅导 comp5313/comp4313—larg... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601251.html" title="辅导 AEM 4500 / ECON 3860 / AEM 5500: Resource Economics Spring 2024 Problem Set #11讲解 Python语言" target="_blank"> 辅导 aem 4500 / econ 3860 / ... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089601091.html" title="辅导 Math 1151, Spring 2024 Written Homework 6辅导 数据结构语言程序" target="_blank"> 辅导 math 1151, spring 2024 ... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600931.html" title="辅导 7SSMM712 – Topics in Applied Finance 2023/24调试数据库编程" target="_blank"> 辅导 7ssmm712 – topics in a... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600781.html" title="辅导 ELEC ENG 3088/7088 Computer Architecture讲解 留学生C/C++语言" target="_blank"> 辅导 elec eng 3088/7088 comp... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600621.html" title="辅导 POLS0010 Data Analysis Term II ESSAY QUESTIONS 2024辅导 数据结构程序" target="_blank"> 辅导 pols0010 data analysis ... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600461.html" title="辅导 Econ 602: Course Project讲解 留学生SQL语言程序" target="_blank"> 辅导 econ 602: course projec... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600311.html" title="讲解 Economics 253 - Spring 2024 Fundamentals of Econometrics: Empirical Paper辅导 C/C++语言" target="_blank"> 讲解 economics 253 - spring ... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600151.html" title="辅导 ARTD 6151: Sustainability in Business and Design Assignment Brief 2023/24讲解 留学生Matlab程序" target="_blank"> 辅导 artd 6151: sustainabili... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089600001.html" title="讲解 IFN647 Text, Web and Media Analytics Assignment 1辅导 Python语言" target="_blank"> 讲解 ifn647 text, web and me... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041818089599841.html" title="讲解 CSE340 Project 2: Parsing讲解 C/C++语言" target="_blank"> 讲解 cse340 project 2: pars... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041817867458121.html" title="讲解 MANE - 4500 Modeling and Control of Dynamical Systems Midterm Exam #2讲解 R编程" target="_blank"> 讲解 mane - 4500 modeling an... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041817867457961.html" title="讲解 CIVIL 750 - Timber Engineering Assignment 2讲解 Python程序" target="_blank"> 讲解 civil 750 - timber engi... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041817818047181.html" title="辅导 QBUS6860 Sustainable Energy and Environmental Impacts讲解 Python编程" target="_blank"> 辅导 qbus6860 sustainable en... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041817818047031.html" title="辅导 25721 Investment Management Assignment Part II Autumn 2024辅导 留学生Matlab语言" target="_blank"> 辅导 25721 investment manage... </a> <span class="colorlan"> 2024-04-18</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041817818046871.html" title="讲解 EEEE4123 HDL FOR PROGRAMMABLE DEVICES辅导 留学生Matlab语言" target="_blank"> 讲解 eeee4123 hdl for progra... </a> <span class="colorlan"> 2024-04-18</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=CS 61B" title="CS 61B"> cs 61b </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=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=MSO3610" title="MSO3610"> mso3610 </a> <a href="Lists.aspx?wd=MATH5905" title="MATH5905"> math5905 </a> <a href="Lists.aspx?wd=FIT2096" title="FIT2096"> fit2096 </a> <a href="Lists.aspx?wd=COMP3411" title="COMP3411"> comp3411 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </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=DSCI 525" title="DSCI 525"> dsci 525 </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=COMP30023" title="COMP30023"> comp30023 </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 2550" title="CS 2550"> cs 2550 </a> <a href="Lists.aspx?wd=IS2022" title="IS2022"> is2022 </a> <a href="Lists.aspx?wd=FIT1047" title="FIT1047"> fit1047 </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=CS 211" title="CS 211"> cs 211 </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=SWEN90004" title="SWEN90004"> swen90004 </a> <a href="Lists.aspx?wd=INFO1113" title="INFO1113"> info1113 </a> <a href="Lists.aspx?wd=SEHH2042" title="SEHH2042"> sehh2042 </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> <a href="Lists.aspx?wd=INU1111" title="INU1111"> inu1111 </a> <a href="Lists.aspx?wd=FIT3152" title="FIT3152"> fit3152 </a> <a href="Lists.aspx?wd=FINM7409" title="FINM7409"> finm7409 </a> <a href="Lists.aspx?wd=QBUS2820" title="QBUS2820"> qbus2820 </a> <a href="Lists.aspx?wd=FINS5516" title="FINS5516"> fins5516 </a> <a href="Lists.aspx?wd=CPT106" title="CPT106"> cpt106 </a> <a href="Lists.aspx?wd=INFO6001" title="INFO6001"> info6001 </a> <a href="Lists.aspx?wd=ecs150" title="ecs150"> ecs150 </a> <a href="Lists.aspx?wd=IS61x6" title="IS61x6"> is61x6 </a> <a href="Lists.aspx?wd=CSE115" title="CSE115"> cse115 </a> <a href="Lists.aspx?wd=SENG6110" title="SENG6110"> seng6110 </a> <a href="Lists.aspx?wd=BUS265" title="BUS265"> bus265 </a> <a href="Lists.aspx?wd=CptS260" title="CptS260"> cpts260 </a> <a href="Lists.aspx?wd=MPHY0009" title="MPHY0009"> mphy0009 </a> <a href="Lists.aspx?wd=CSC306" title="CSC306"> csc306 </a> <a href="Lists.aspx?wd=ECO2011" title="ECO2011"> eco2011 </a> <a href="Lists.aspx?wd=EE3004" title="EE3004"> ee3004 </a> <a href="Lists.aspx?wd=ST332" title="ST332"> st332 </a> <a href="Lists.aspx?wd=IDEPG001" title="IDEPG001"> idepg001 </a> <a href="Lists.aspx?wd=ISOM3028" title="ISOM3028"> isom3028 </a> <a href="Lists.aspx?wd=EECE 6083" title="EECE 6083"> eece 6083 </a> <a href="Lists.aspx?wd=CEG5304" title="CEG5304"> ceg5304 </a> <a href="Lists.aspx?wd=MCD4700" title="MCD4700"> mcd4700 </a> <a href="Lists.aspx?wd=EECS 493" title="EECS 493"> eecs 493 </a> <a href="Lists.aspx?wd=EG25H4" title="EG25H4"> eg25h4 </a> <a href="Lists.aspx?wd=38173" title="38173"> 38173 </a> <a href="Lists.aspx?wd=ELC5216" title="ELC5216"> elc5216 </a> <a href="Lists.aspx?wd=INFS6071" title="INFS6071"> infs6071 </a> <a href="Lists.aspx?wd=LUBS5996M" title="LUBS5996M"> lubs5996m </a> <a href="Lists.aspx?wd=7SSMM803" title="7SSMM803"> 7ssmm803 </a> <a href="Lists.aspx?wd=GLBH0031" title="GLBH0031"> glbh0031 </a> <a href="Lists.aspx?wd=PHYS1120" title="PHYS1120"> phys1120 </a> <a href="Lists.aspx?wd=COMP52715" title="COMP52715"> comp52715 </a> <a href="Lists.aspx?wd=EEB240" title="EEB240"> eeb240 </a> <a href="Lists.aspx?wd=SOCI3403" title="SOCI3403"> soci3403 </a> <a href="Lists.aspx?wd=COMP3334" title="COMP3334"> comp3334 </a> <a href="Lists.aspx?wd=PSYC3241" title="PSYC3241"> psyc3241 </a> <a href="Lists.aspx?wd=FIN570" title="FIN570"> fin570 </a> <a href="Lists.aspx?wd=218.323" title="218.323"> 218.323 </a> <a href="Lists.aspx?wd=LNG310" title="LNG310"> lng310 </a> <a href="Lists.aspx?wd=RIM3352" title="RIM3352"> rim3352 </a> <a href="Lists.aspx?wd=BIO206" title="BIO206"> bio206 </a> <a href="Lists.aspx?wd=BU.450.760" title="BU.450.760"> bu.450.760 </a> <a href="Lists.aspx?wd=MATH3836" title="MATH3836"> math3836 </a> <a href="Lists.aspx?wd=CMNS3490" title="CMNS3490"> cmns3490 </a> <a href="Lists.aspx?wd=IY5610/4610" title="IY5610/4610"> iy5610/4610 </a> <a href="Lists.aspx?wd=CPT304" title="CPT304"> cpt304 </a> <a href="Lists.aspx?wd=AC6105" title="AC6105"> ac6105 </a> <a href="Lists.aspx?wd=Ac.F633" title="Ac.F633"> ac.f633 </a> <a href="Lists.aspx?wd=ASB-3525" title="ASB-3525"> asb-3525 </a> <a href="Lists.aspx?wd=LNG206" title="LNG206"> lng206 </a> <a href="Lists.aspx?wd=ACFI302" title="ACFI302"> acfi302 </a> <a href="Lists.aspx?wd=CS 1501" title="CS 1501"> cs 1501 </a> <a href="Lists.aspx?wd=CPT408" title="CPT408"> cpt408 </a> <a href="Lists.aspx?wd=BUST10134" title="BUST10134"> bust10134 </a> <a href="Lists.aspx?wd=SOC100" title="SOC100"> soc100 </a> <a href="Lists.aspx?wd=INFR11199" title="INFR11199"> infr11199 </a> <a href="Lists.aspx?wd=CSCI 2122" title="CSCI 2122"> csci 2122 </a> <a href="Lists.aspx?wd=COMP9334" title="COMP9334"> comp9334 </a> <a href="Lists.aspx?wd=CSC1002" title="CSC1002"> csc1002 </a> <a href="Lists.aspx?wd=ETF5650" title="ETF5650"> etf5650 </a> <a href="Lists.aspx?wd=ECO202Y1Y" title="ECO202Y1Y"> eco202y1y </a> <a href="Lists.aspx?wd=ACCT608" title="ACCT608"> acct608 </a> <a href="Lists.aspx?wd=APM236" title="APM236"> apm236 </a> <a href="Lists.aspx?wd=GBSH0007" title="GBSH0007"> gbsh0007 </a> <a href="Lists.aspx?wd=EFIM20005" title="EFIM20005"> efim20005 </a> <a href="Lists.aspx?wd=ACTL5105" title="ACTL5105"> actl5105 </a> <a href="Lists.aspx?wd=ELEC 292" title="ELEC 292"> elec 292 </a> <a href="Lists.aspx?wd=SDSC4026" title="SDSC4026"> sdsc4026 </a> <a href="Lists.aspx?wd=DS2500" title="DS2500"> ds2500 </a> <a href="Lists.aspx?wd=DTS205TC" title="DTS205TC"> dts205tc </a> <a href="Lists.aspx?wd=CS 455" title="CS 455"> cs 455 </a> <a href="Lists.aspx?wd=SWEN20003" title="SWEN20003"> swen20003 </a> <a href="Lists.aspx?wd=CS202" title="CS202"> cs202 </a> <a href="Lists.aspx?wd=158.739-2024" title="158.739-2024"> 158.739-2024 </a> <a href="Lists.aspx?wd=ECO2101" title="ECO2101"> eco2101 </a> <a href="Lists.aspx?wd=BENV0149" title="BENV0149"> benv0149 </a> <a href="Lists.aspx?wd=IFB001" title="IFB001"> ifb001 </a> <a href="Lists.aspx?wd=MTH6142" title="MTH6142"> mth6142 </a> <a href="Lists.aspx?wd=PHY344" title="PHY344"> phy344 </a> <a href="Lists.aspx?wd=INFS3202/7202" title="INFS3202/7202"> infs3202/7202 </a> <a href="Lists.aspx?wd=FC308" title="FC308"> fc308 </a> <a href="Lists.aspx?wd=ST332/ST409" title="ST332/ST409"> st332/st409 </a> <a href="Lists.aspx?wd=EENG20004" title="EENG20004"> eeng20004 </a> <a href="Lists.aspx?wd=CMT313" title="CMT313"> cmt313 </a> <a href="Lists.aspx?wd=CHC4008" title="CHC4008"> chc4008 </a> <a href="Lists.aspx?wd=6G6Z0041" title="6G6Z0041"> 6g6z0041 </a> <a href="Lists.aspx?wd=1CWK100" title="1CWK100"> 1cwk100 </a> <a href="Lists.aspx?wd=EC204" title="EC204"> ec204 </a> <a href="Lists.aspx?wd=ENG2008" title="ENG2008"> eng2008 </a> <a href="Lists.aspx?wd=STAT512" title="STAT512"> stat512 </a> <a href="Lists.aspx?wd=COMP20007" title="COMP20007"> comp20007 </a> <a href="Lists.aspx?wd=COMP3331/9331" title="COMP3331/9331"> comp3331/9331 </a> <a href="Lists.aspx?wd=COMP2111" title="COMP2111"> comp2111 </a> <a href="Lists.aspx?wd=SEHH2239" title="SEHH2239"> sehh2239 </a> <a href="Lists.aspx?wd=ENVM3115/7205" title="ENVM3115/7205"> envm3115/7205 </a> <a href="Lists.aspx?wd=FIN3020" title="FIN3020"> fin3020 </a> <a href="Lists.aspx?wd=FINN1037" title="FINN1037"> finn1037 </a> <a href="Lists.aspx?wd=MAT187-WRITTEN-HOMEWORK" title="MAT187-WRITTEN-HOMEWORK"> mat187-written-homework </a> <a href="Lists.aspx?wd=COMP9311" title="COMP9311"> comp9311 </a> <a href="Lists.aspx?wd=CSC3150" title="CSC3150"> csc3150 </a> <a href="Lists.aspx?wd=COMP809" title="COMP809"> comp809 </a> <a href="Lists.aspx?wd=CHC5223" title="CHC5223"> chc5223 </a> <a href="Lists.aspx?wd=BEM2031" title="BEM2031"> bem2031 </a> <a href="Lists.aspx?wd=159.341" title="159.341"> 159.341 </a> <a href="Lists.aspx?wd=MATH3001" title="MATH3001"> math3001 </a> <a href="Lists.aspx?wd=CSME10003" title="CSME10003"> csme10003 </a> <a href="Lists.aspx?wd=PA3" title="PA3"> pa3 </a> <a href="Lists.aspx?wd=ENT204TC" title="ENT204TC"> ent204tc </a> <a href="Lists.aspx?wd=FINM1416" title="FINM1416"> finm1416 </a> <a href="Lists.aspx?wd=IB2680" title="IB2680"> ib2680 </a> <a href="Lists.aspx?wd=PHL349" title="PHL349"> phl349 </a> <a href="Lists.aspx?wd=CULS30004" title="CULS30004"> culs30004 </a> <a href="Lists.aspx?wd=PSYCH204-24A" title="PSYCH204-24A"> psych204-24a </a> <a href="Lists.aspx?wd=CSC 330" title="CSC 330"> csc 330 </a> <a href="Lists.aspx?wd=MECM30016" title="MECM30016"> mecm30016 </a> <a href="Lists.aspx?wd=EAP115" title="EAP115"> eap115 </a> <a href="Lists.aspx?wd=COMP 330" title="COMP 330"> comp 330 </a> <a href="Lists.aspx?wd=AIC2100" title="AIC2100"> aic2100 </a> <a href="Lists.aspx?wd=COMP S380F" title="COMP S380F"> comp s380f </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>