首页 > > 详细

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="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=CS 161" title="CS 161"> cs 161 </a> <a href="Lists.aspx?wd=SWEN20003" title="SWEN20003"> swen20003 </a> <a href="Lists.aspx?wd=COMP282" title="COMP282"> comp282 </a> <a href="Lists.aspx?wd=CSC1002" title="CSC1002"> csc1002 </a> <a href="Lists.aspx?wd=COMP27112" title="COMP27112"> comp27112 </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=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=COMP10002" title="COMP10002"> comp10002 </a> <a href="Lists.aspx?wd=COMP30023" title="COMP30023"> comp30023 </a> <a href="Lists.aspx?wd=SEHH2042" title="SEHH2042"> sehh2042 </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=COMP9417" title="COMP9417"> comp9417 </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=COMP2003J" title="COMP2003J"> comp2003j </a> <a href="Lists.aspx?wd=CSE340" title="CSE340"> cse340 </a> <a href="Lists.aspx?wd=CS 2550" title="CS 2550"> cs 2550 </a> <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=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=CAO107" title="CAO107"> cao107 </a> <a href="Lists.aspx?wd=36318" title="36318"> 36318 </a> <a href="Lists.aspx?wd=IS2022" title="IS2022"> is2022 </a> <a href="Lists.aspx?wd=CS 211" title="CS 211"> cs 211 </a> <a href="Lists.aspx?wd=FIT1047" title="FIT1047"> fit1047 </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> <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=INU1111" title="INU1111"> inu1111 </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=INFO6001" title="INFO6001"> info6001 </a> <a href="Lists.aspx?wd=CPT106" title="CPT106"> cpt106 </a> <a href="Lists.aspx?wd=FINM7409" title="FINM7409"> finm7409 </a> <a href="Lists.aspx?wd=FIT3152" title="FIT3152"> fit3152 </a> <a href="Lists.aspx?wd=FINS5516" title="FINS5516"> fins5516 </a> <a href="Lists.aspx?wd=QBUS2820" title="QBUS2820"> qbus2820 </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=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=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=COMP3334" title="COMP3334"> comp3334 </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>