首页 > > 详细

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="2025071715264682651.html" title="辅导 Poetry Portfolio辅导 C/C++语言" target="_blank"> 辅导 poetry portfolio辅导 c/... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264682501.html" title="辅导 Find all primes p such that p! + p is a perfect square.辅导 Web开发" target="_blank"> 辅导 find all primes p such ... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264681091.html" title="讲解 ASIA 111 Introduction to Asian Histories and Cultures讲解 R语言" target="_blank"> 讲解 asia 111 introduction t... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264678281.html" title="讲解 Summer Reading Assignment 讲解 Statistics统计" target="_blank"> 讲解 summer reading assignme... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264677961.html" title="讲解 Change Management Simulation: Power and Influence Foreground Reading辅导 C/C++程序" target="_blank"> 讲解 change management simul... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264677031.html" title="讲解 CPT206 Computer Programming for Financial Mathematics调试Java编程" target="_blank"> 讲解 cpt206 computer program... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264676561.html" title="讲解 STAT 3025Q Statistical Methods Summer 2025讲解 R编程" target="_blank"> 讲解 stat 3025q statistical ... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264676401.html" title="辅导 18-698 / 42-632 Neural Signal Processing Spring 2025 Problem Set 2讲解 Matlab编程" target="_blank"> 辅导 18-698 / 42-632 neural ... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264675931.html" title="辅导 Computer Fundamentals / COMP1027 (CSF) / Semester 1辅导 C/C++程序" target="_blank"> 辅导 computer fundamentals /... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264675621.html" title="讲解 BU1002: ASSESSMENT TASK 2讲解 Python语言程序" target="_blank"> 讲解 bu1002: assessment task... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264674841.html" title="辅导 MGMT321 Organisations and Ethics Assignment Three Individual Reflec>on辅导 数据结构语言" target="_blank"> 辅导 mgmt321 organisations a... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264623281.html" title="5CCE2MCT辅导 、讲解 Java/Python程序" target="_blank"> 5cce2mct辅导 、讲解 java/pyt... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715264380781.html" title="讲解 data编程、Python程序设计辅导 " target="_blank"> 讲解 data编程、python程序设计... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055670461.html" title="辅导 CED 6910 01 (70700) Capstone: Master’s Project Fall 2024讲解 留学生SQL语言程序" target="_blank"> 辅导 ced 6910 01 (70700) cap... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055670311.html" title="讲解 Methods for Calculating Exhaustion/Optimal Depletion of an Exhaustible Resource讲解 R程序" target="_blank"> 讲解 methods for calculating... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055670151.html" title="讲解 Researching Everyday Communication 2024-25辅导 Java编程" target="_blank"> 讲解 researching everyday co... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055670001.html" title="讲解 MATH 2210 Q, Applied Linear Algebra Summer 2025讲解 留学生SQL 程序" target="_blank"> 讲解 math 2210 q, applied li... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055669211.html" title="辅导 MGMT321 Organisations and Ethics Assignment Two Individual Ethical Case Analysis调试R语言程序" target="_blank"> 辅导 mgmt321 organisations a... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055668591.html" title="讲解 COMP2912 software design brief调试数据库编程" target="_blank"> 讲解 comp2912 software desig... </a> <span class="colorlan"> 2025-07-17</span> </li> <li class="divullititle heightline25px divtal"><a href="2025071715055667961.html" title="讲解 COMP3010 Collaborative Museum or Robot Telepresence Coursework调试R程序" target="_blank"> 讲解 comp3010 collaborative ... </a> <span class="colorlan"> 2025-07-17</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=MKTG2509" title="MKTG2509"> mktg2509 </a> <a href="Lists.aspx?wd=CSCI 2600" title="CSCI 2600"> csci 2600 </a> <a href="Lists.aspx?wd=38170" title="38170"> 38170 </a> <a href="Lists.aspx?wd=LNG302" title="LNG302"> lng302 </a> <a href="Lists.aspx?wd=CSSE3010" title="CSSE3010"> csse3010 </a> <a href="Lists.aspx?wd=PHAS3226" title="PHAS3226"> phas3226 </a> <a href="Lists.aspx?wd=77938" title="77938"> 77938 </a> <a href="Lists.aspx?wd=ARCH1162" title="ARCH1162"> arch1162 </a> <a href="Lists.aspx?wd=ENGN4536/ENGN6536" title="ENGN4536/ENGN6536"> engn4536/engn6536 </a> <a href="Lists.aspx?wd=ACX5903" title="ACX5903"> acx5903 </a> <a href="Lists.aspx?wd=COMP151101" title="COMP151101"> comp151101 </a> <a href="Lists.aspx?wd=PHL245" title="PHL245"> phl245 </a> <a href="Lists.aspx?wd=CSE12" title="CSE12"> cse12 </a> <a href="Lists.aspx?wd=COMP9312" title="COMP9312"> comp9312 </a> <a href="Lists.aspx?wd=STAT3016/6016" title="STAT3016/6016"> stat3016/6016 </a> <a href="Lists.aspx?wd=PHAS0038" title="PHAS0038"> phas0038 </a> <a href="Lists.aspx?wd=COMP2140" title="COMP2140"> comp2140 </a> <a href="Lists.aspx?wd=6QQMB312" title="6QQMB312"> 6qqmb312 </a> <a href="Lists.aspx?wd=XJCO3011" title="XJCO3011"> xjco3011 </a> <a href="Lists.aspx?wd=REST0005" title="REST0005"> rest0005 </a> <a href="Lists.aspx?wd=EMATM0051" title="EMATM0051"> ematm0051 </a> <a href="Lists.aspx?wd=5QQMN219" title="5QQMN219"> 5qqmn219 </a> <a href="Lists.aspx?wd=LUBS5062M" title="LUBS5062M"> lubs5062m </a> <a href="Lists.aspx?wd=EEE8155" title="EEE8155"> eee8155 </a> <a href="Lists.aspx?wd=CEGE0100" title="CEGE0100"> cege0100 </a> <a href="Lists.aspx?wd=EAP033" title="EAP033"> eap033 </a> <a href="Lists.aspx?wd=ARTD1109" title="ARTD1109"> artd1109 </a> <a href="Lists.aspx?wd=MAT246" title="MAT246"> mat246 </a> <a href="Lists.aspx?wd=ETC3430" title="ETC3430"> etc3430 </a> <a href="Lists.aspx?wd=ECMM462" title="ECMM462"> ecmm462 </a> <a href="Lists.aspx?wd=MIS102" title="MIS102"> mis102 </a> <a href="Lists.aspx?wd=INFT6800" title="INFT6800"> inft6800 </a> <a href="Lists.aspx?wd=DDES9903" title="DDES9903"> ddes9903 </a> <a href="Lists.aspx?wd=COMP6521" title="COMP6521"> comp6521 </a> <a href="Lists.aspx?wd=COMP9517" title="COMP9517"> comp9517 </a> <a href="Lists.aspx?wd=COMP3331/9331" title="COMP3331/9331"> comp3331/9331 </a> <a href="Lists.aspx?wd=COMP4337" title="COMP4337"> comp4337 </a> <a href="Lists.aspx?wd=COMP6008" title="COMP6008"> comp6008 </a> <a href="Lists.aspx?wd=COMP9414" title="COMP9414"> comp9414 </a> <a href="Lists.aspx?wd=BU.231.790.81" title="BU.231.790.81"> bu.231.790.81 </a> <a href="Lists.aspx?wd=MAN00150M" title="MAN00150M"> man00150m </a> <a href="Lists.aspx?wd=CSB352H" title="CSB352H"> csb352h </a> <a href="Lists.aspx?wd=MATH1041" title="MATH1041"> math1041 </a> <a href="Lists.aspx?wd=EENGM4100" title="EENGM4100"> eengm4100 </a> <a href="Lists.aspx?wd=ISYS1002" title="ISYS1002"> isys1002 </a> <a href="Lists.aspx?wd=08" title="08"> 08 </a> <a href="Lists.aspx?wd=6057CEM" title="6057CEM"> 6057cem </a> <a href="Lists.aspx?wd=MKTG3504" title="MKTG3504"> mktg3504 </a> <a href="Lists.aspx?wd=MTHM036" title="MTHM036"> mthm036 </a> <a href="Lists.aspx?wd=MTRX1701" title="MTRX1701"> mtrx1701 </a> <a href="Lists.aspx?wd=MTH3241" title="MTH3241"> mth3241 </a> <a href="Lists.aspx?wd=EEEE3086" title="EEEE3086"> eeee3086 </a> <a href="Lists.aspx?wd=CMP-7038B" title="CMP-7038B"> cmp-7038b </a> <a href="Lists.aspx?wd=CMP-7000A" title="CMP-7000A"> cmp-7000a </a> <a href="Lists.aspx?wd=INTS4010" title="INTS4010"> ints4010 </a> <a href="Lists.aspx?wd=ECON2151" title="ECON2151"> econ2151 </a> <a href="Lists.aspx?wd=INFS5710" title="INFS5710"> infs5710 </a> <a href="Lists.aspx?wd=FINS5516" title="FINS5516"> fins5516 </a> <a href="Lists.aspx?wd=FIN3309" title="FIN3309"> fin3309 </a> <a href="Lists.aspx?wd=FINS5510" title="FINS5510"> fins5510 </a> <a href="Lists.aspx?wd=GSOE9340" title="GSOE9340"> gsoe9340 </a> <a href="Lists.aspx?wd=MATH2007" title="MATH2007"> math2007 </a> <a href="Lists.aspx?wd=MATH2036" title="MATH2036"> math2036 </a> <a href="Lists.aspx?wd=SOEE5010" title="SOEE5010"> soee5010 </a> <a href="Lists.aspx?wd=MARK3088" title="MARK3088"> mark3088 </a> <a href="Lists.aspx?wd=INFS3605" title="INFS3605"> infs3605 </a> <a href="Lists.aspx?wd=ELEC9714" title="ELEC9714"> elec9714 </a> <a href="Lists.aspx?wd=COMP2271" title="COMP2271"> comp2271 </a> <a href="Lists.aspx?wd=MA214" title="MA214"> ma214 </a> <a href="Lists.aspx?wd=COMP2211" title="COMP2211"> comp2211 </a> <a href="Lists.aspx?wd=INFS3604" title="INFS3604"> infs3604 </a> <a href="Lists.aspx?wd=600426" title="600426"> 600426 </a> <a href="Lists.aspx?wd=SIT254" title="SIT254"> sit254 </a> <a href="Lists.aspx?wd=ACCT3091" title="ACCT3091"> acct3091 </a> <a href="Lists.aspx?wd=BBT405" title="BBT405"> bbt405 </a> <a href="Lists.aspx?wd=MSIN0116" title="MSIN0116"> msin0116 </a> <a href="Lists.aspx?wd=COM107/COM113" title="COM107/COM113"> com107/com113 </a> <a href="Lists.aspx?wd=MARK5826" title="MARK5826"> mark5826 </a> <a href="Lists.aspx?wd=SIT120" title="SIT120"> sit120 </a> <a href="Lists.aspx?wd=Comp9021" title="Comp9021"> comp9021 </a> <a href="Lists.aspx?wd=ECO2101" title="ECO2101"> eco2101 </a> <a href="Lists.aspx?wd=EEEN40700" title="EEEN40700"> eeen40700 </a> <a href="Lists.aspx?wd=CS253" title="CS253"> cs253 </a> <a href="Lists.aspx?wd=ECE3114" title="ECE3114"> ece3114 </a> <a href="Lists.aspx?wd=ECMM447" title="ECMM447"> ecmm447 </a> <a href="Lists.aspx?wd=CHNS3000" title="CHNS3000"> chns3000 </a> <a href="Lists.aspx?wd=MATH377" title="MATH377"> math377 </a> <a href="Lists.aspx?wd=ITD102" title="ITD102"> itd102 </a> <a href="Lists.aspx?wd=COMP9444" title="COMP9444"> comp9444 </a> <a href="Lists.aspx?wd=COMP(2041|9044)" title="COMP(2041|9044)"> comp(2041|9044) </a> <a href="Lists.aspx?wd=ECON0060" title="ECON0060"> econ0060 </a> <a href="Lists.aspx?wd=ECON7230" title="ECON7230"> econ7230 </a> <a href="Lists.aspx?wd=MGT001371" title="MGT001371"> mgt001371 </a> <a href="Lists.aspx?wd=ECS-323" title="ECS-323"> ecs-323 </a> <a href="Lists.aspx?wd=CS6250" title="CS6250"> cs6250 </a> <a href="Lists.aspx?wd=MGDI60012" title="MGDI60012"> mgdi60012 </a> <a href="Lists.aspx?wd=MDIA2012" title="MDIA2012"> mdia2012 </a> <a href="Lists.aspx?wd=COMM221001" title="COMM221001"> comm221001 </a> <a href="Lists.aspx?wd=COMM5000" title="COMM5000"> comm5000 </a> <a href="Lists.aspx?wd=MA1008" title="MA1008"> ma1008 </a> <a href="Lists.aspx?wd=ENGL642" title="ENGL642"> engl642 </a> <a href="Lists.aspx?wd=ECON241" title="ECON241"> econ241 </a> <a href="Lists.aspx?wd=COM333" title="COM333"> com333 </a> <a href="Lists.aspx?wd=MATH367" title="MATH367"> math367 </a> <a href="Lists.aspx?wd=MIS201" title="MIS201"> mis201 </a> <a href="Lists.aspx?wd=NBS-7041X" title="NBS-7041X"> nbs-7041x </a> <a href="Lists.aspx?wd=MEEK16104" title="MEEK16104"> meek16104 </a> <a href="Lists.aspx?wd=ECON2003" title="ECON2003"> econ2003 </a> <a href="Lists.aspx?wd=COMM1190" title="COMM1190"> comm1190 </a> <a href="Lists.aspx?wd=MBAS902" title="MBAS902"> mbas902 </a> <a href="Lists.aspx?wd=COMP-1027" title="COMP-1027"> comp-1027 </a> <a href="Lists.aspx?wd=DPST1091" title="DPST1091"> dpst1091 </a> <a href="Lists.aspx?wd=comp7315" title="comp7315"> comp7315 </a> <a href="Lists.aspx?wd=EPPD1033" title="EPPD1033"> eppd1033 </a> <a href="Lists.aspx?wd=M06" title="M06"> m06 </a> <a href="Lists.aspx?wd=EE3025" title="EE3025"> ee3025 </a> <a href="Lists.aspx?wd=MSCI231" title="MSCI231"> msci231 </a> <a href="Lists.aspx?wd=BB113/BBS1063" title="BB113/BBS1063"> bb113/bbs1063 </a> <a href="Lists.aspx?wd=FC709" title="FC709"> fc709 </a> <a href="Lists.aspx?wd=COMP3425" title="COMP3425"> comp3425 </a> <a href="Lists.aspx?wd=COMP9417" title="COMP9417"> comp9417 </a> <a href="Lists.aspx?wd=ECON42915" title="ECON42915"> econ42915 </a> <a href="Lists.aspx?wd=CB9101" title="CB9101"> cb9101 </a> <a href="Lists.aspx?wd=MATH1102E" title="MATH1102E"> math1102e </a> <a href="Lists.aspx?wd=CHME0017" title="CHME0017"> chme0017 </a> <a href="Lists.aspx?wd=FC307" title="FC307"> fc307 </a> <a href="Lists.aspx?wd=MKT60104" title="MKT60104"> mkt60104 </a> <a href="Lists.aspx?wd=5522USST" title="5522USST"> 5522usst </a> <a href="Lists.aspx?wd=LITR1-UC6201.200" title="LITR1-UC6201.200"> litr1-uc6201.200 </a> <a href="Lists.aspx?wd=EE1102" title="EE1102"> ee1102 </a> <a href="Lists.aspx?wd=COSC2803" title="COSC2803"> cosc2803 </a> <a href="Lists.aspx?wd=MATH39512" title="MATH39512"> math39512 </a> <a href="Lists.aspx?wd=OMP9727" title="OMP9727"> omp9727 </a> <a href="Lists.aspx?wd=INT2067/INT5051" title="INT2067/INT5051"> int2067/int5051 </a> <a href="Lists.aspx?wd=BSB151" title="BSB151"> bsb151 </a> <a href="Lists.aspx?wd=MGT253" title="MGT253"> mgt253 </a> <a href="Lists.aspx?wd=FC021" title="FC021"> fc021 </a> <a href="Lists.aspx?wd=BABS2202" title="BABS2202"> babs2202 </a> <a href="Lists.aspx?wd=MIS2002S" title="MIS2002S"> mis2002s </a> <a href="Lists.aspx?wd=PhyA21" title="PhyA21"> phya21 </a> <a href="Lists.aspx?wd=18-213" title="18-213"> 18-213 </a> <a href="Lists.aspx?wd=CEGE0012" title="CEGE0012"> cege0012 </a> <a href="Lists.aspx?wd=MDIA1002" title="MDIA1002"> mdia1002 </a> <a href="Lists.aspx?wd=MATH38032" title="MATH38032"> math38032 </a> <a href="Lists.aspx?wd=MECH5125" title="MECH5125"> mech5125 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </a> <a href="Lists.aspx?wd=CISC102" title="CISC102"> cisc102 </a> <a href="Lists.aspx?wd=MGX3110" title="MGX3110"> mgx3110 </a> <a href="Lists.aspx?wd=CS240" title="CS240"> cs240 </a> <a href="Lists.aspx?wd=11175" title="11175"> 11175 </a> <a href="Lists.aspx?wd=FIN3020S" title="FIN3020S"> fin3020s </a> <a href="Lists.aspx?wd=Eco3420" title="Eco3420"> eco3420 </a> <a href="Lists.aspx?wd=ICTTEN622" title="ICTTEN622"> ictten622 </a> <a href="Lists.aspx?wd=COMP9727" title="COMP9727"> comp9727 </a> <a href="Lists.aspx?wd=CPT111" title="CPT111"> cpt111 </a> <a href="Lists.aspx?wd=DE114102D" title="DE114102D"> de114102d </a> <a href="Lists.aspx?wd=MGM320H5S" title="MGM320H5S"> mgm320h5s </a> <a href="Lists.aspx?wd=BAFI1019" title="BAFI1019"> bafi1019 </a> <a href="Lists.aspx?wd=MATH21112" title="MATH21112"> math21112 </a> <a href="Lists.aspx?wd=EFIM20036" title="EFIM20036"> efim20036 </a> <a href="Lists.aspx?wd=MN-3503" title="MN-3503"> mn-3503 </a> <a href="Lists.aspx?wd=FINS5568" title="FINS5568"> fins5568 </a> <a href="Lists.aspx?wd=110.807" title="110.807"> 110.807 </a> <a href="Lists.aspx?wd=BCPM000028" title="BCPM000028"> bcpm000028 </a> <a href="Lists.aspx?wd=INFO6030" title="INFO6030"> info6030 </a> <a href="Lists.aspx?wd=BMA0092" title="BMA0092"> bma0092 </a> <a href="Lists.aspx?wd=BCPM0054" title="BCPM0054"> bcpm0054 </a> <a href="Lists.aspx?wd=MATH20212" title="MATH20212"> math20212 </a> <a href="Lists.aspx?wd=CE335" title="CE335"> ce335 </a> <a href="Lists.aspx?wd=CS365" title="CS365"> cs365 </a> <a href="Lists.aspx?wd=CENV6141" title="CENV6141"> cenv6141 </a> <a href="Lists.aspx?wd=FTEC5580" title="FTEC5580"> ftec5580 </a> <a href="Lists.aspx?wd=MATH2010" title="MATH2010"> math2010 </a> <a href="Lists.aspx?wd=EC3450" title="EC3450"> ec3450 </a> <a href="Lists.aspx?wd=COMM1170" title="COMM1170"> comm1170 </a> <a href="Lists.aspx?wd=ECMT1010" title="ECMT1010"> ecmt1010 </a> <a href="Lists.aspx?wd=CSCI-UA.0480-003" title="CSCI-UA.0480-003"> csci-ua.0480-003 </a> <a href="Lists.aspx?wd=ECON12-200" title="ECON12-200"> econ12-200 </a> <a href="Lists.aspx?wd=IB3960" title="IB3960"> ib3960 </a> <a href="Lists.aspx?wd=ECTB60H3F" title="ECTB60H3F"> ectb60h3f </a> <a href="Lists.aspx?wd=CS247—Assignment" title="CS247—Assignment"> cs247—assignment </a> <a href="Lists.aspx?wd=TK3163" title="TK3163"> tk3163 </a> <a href="Lists.aspx?wd=ICS3U" title="ICS3U"> ics3u </a> <a href="Lists.aspx?wd=IB3J80" title="IB3J80"> ib3j80 </a> <a href="Lists.aspx?wd=COMP20008" title="COMP20008"> comp20008 </a> <a href="Lists.aspx?wd=COMP9334" title="COMP9334"> comp9334 </a> <a href="Lists.aspx?wd=EPPD1063" title="EPPD1063"> eppd1063 </a> <a href="Lists.aspx?wd=ACCT2343" title="ACCT2343"> acct2343 </a> <a href="Lists.aspx?wd=CCT109" title="CCT109"> cct109 </a> <a href="Lists.aspx?wd=ISYS1055/3412" title="ISYS1055/3412"> isys1055/3412 </a> <a href="Lists.aspx?wd=MATH350-Real" title="MATH350-Real"> math350-real </a> <a href="Lists.aspx?wd=MATH2014" title="MATH2014"> math2014 </a> <a href="Lists.aspx?wd=EEC180" title="EEC180"> eec180 </a> <a href="Lists.aspx?wd=STAT141B" title="STAT141B"> stat141b </a> <a href="Lists.aspx?wd=ECON2101" title="ECON2101"> econ2101 </a> <a href="Lists.aspx?wd=MSINM014/MSING014/MSING014B" title="MSINM014/MSING014/MSING014B"> msinm014/msing014/msing014b </a> <a href="Lists.aspx?wd=FIT2004" title="FIT2004"> fit2004 </a> <a href="Lists.aspx?wd=COMP643" title="COMP643"> comp643 </a> <a href="Lists.aspx?wd=BU1002" title="BU1002"> bu1002 </a> <a href="Lists.aspx?wd=CM2030" title="CM2030"> cm2030 </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>