Website Plan--网站设计报告(英文)
- 格式:docx
- 大小:65.66 KB
- 文档页数:9
英文网站建设English Website DevelopmentWith the rapid advancement of technology and globalization, establishing an English website for your business has become increasingly crucial. An English website not only allows you to reach a broader international audience but also enhances your business's credibility and professionalism. In this article, we will explore the various aspects of developing an English website and the benefits it can bring to your business.First and foremost, the design and development of an English website should focus on user experience. A well-structured, visually appealing website layout that is user-friendly will create a positive impression on visitors. It is essential to ensure that the website is easy to navigate, with clear menu options, intuitive page layouts, and prominent call-to-action buttons. Mobile optimization is also crucial in today's smartphone-driven world, as the majority of internet users access websites through their mobile devices.When it comes to content, translating your existing material into English accurately and maintaining an appropriate tone is vital. High-quality English content will not only attract potential customers but also reflect positively on your brand image. Ensuring that the content is error-free and culturally sensitive is equally important. Consider hiring a professional native English speaker or translator who can accurately convey your message while aligning it with the target audience's cultural context.Including compelling visual elements such as images, videos, and infographics can significantly enhance the appeal of your English website. These visuals should be carefully selected to complement the content and showcase your products or services effectively. However, it is essential to strike a balance between visual appeal and website loading speed, as slow loading times can deter visitors.In addition to design and content, search engine optimization (SEO) should not be overlooked. By implementing appropriate SEO strategies, your English website is morelikely to appear in relevant search engine results, thus increasing its visibility and attracting organic traffic. Conducting keyword research and incorporating relevant keywords into your website's content and metadata can significantly improve its search engine ranking.To optimize user engagement, incorporating interactive features and social media integration on your English website is highly recommended. Features such as contact forms, live chat support, and social media sharing buttons allow visitors to connect with you more easily and share your content with their networks. This can help generate additional exposure and potentially drive more traffic to your website.Furthermore, ensuring that your English website is regularly updated is essential. Outdated information not only creates a negative user experience but can also harm your business's reputation. Regularly reviewing and updating your website's content, news articles, and product or service information will demonstrate reliability and keep visitors coming back for more.Lastly, monitoring the performance of your English website is crucial to identify areas for improvement. Analyzing website analytics can provide valuable insights into visitor behavior, traffic sources, and conversion rates. This data can help identify any issues or bottlenecks, allowing you to optimize your website's performance and achieve your business goals effectively.In conclusion, building an English website for your business is an essential step in today's globalized world. A well-designed and user-friendly website, coupled with high-quality and culturally sensitive English content, can significantly enhance your brand image and attract a broader international audience. Incorporating SEO strategies, interactive features, and regular updates ensure optimal performance and user engagement. By investing in an English website, you position yourself for success in the digital age.。
Component ServerSEMESTER THESISSamuele Milani23rd September2004http://se.inf.ethz.ch/componentserver/Student:Samuele Milani(milanisa@student.ethz.ch) Student-No:99-918-880Supervising Assistant:Till G.BaySupervising Professor:Bertrand Meyer1ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniContents1Abstract3 2Installation42.1Hardware requirements (4)2.2Software requirements (4)2.3Creating users (4)2.4Creating the database (5)2.5Con guring PHP (5)2.5.1Setting command bu ering (5)2.5.2Con guring outgoing mail account (5)2.6Creating the cserver root folder (5)2.7Setting paths (6)2.8Test (6)3User guide73.1Features (7)3.2Search a Component (7)3.3Extended Search (9)3.4Register a new user to Component Server (10)3.5Log into the component Server(Registered Users) (11)3.6Edit the user information(Registered Users) (12)3.7Add a new Component(Registered Users) (12)3.8Edit an existing component(Registered Users) (14)3.9Retrieve password(Registered Users) (14)3.10Change the Database(Administrators only) (15)4The Development164.1The component_db Database (16)4.1.1Why PostgreSQL (16)4.1.2The Database schema (16)4.1.3The phppgAdmin tool (17)4.2The PHP pages (17)4.2.1Why PHP (17)4.2.2The Component Server structure (18)4.2.3The Security (18)5Bugs19 6Future Works19 7Credits192ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniList of Figures1The Component Server main page (8)2The Search results (8)3The I Feel Lucky result (9)4The Extended Search page (10)5Adding a new User (11)6The Login page (11)7A Component Server user Homepage (12)8Add a new Component (13)9The new Component is added to My components (14)10The Password remainder page (15)11The component_db schema (17)3ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani1AbstractThe main idea of this project was to develop a Web Server that was able to catalogue a huge set of software components,and also provide functionalities to retrieve and maintain data about them always up-to-date.The whole thing was meant to be accessible through a Web interface from anywhere with a Browser and an Internet connection without needing any extra particular software.The Component Server has been developed to serve component developers but can also be very useful for a normal user who wants to nd a speci c component that t his needs.4ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani2Installation2.1Hardware requirementsThe machine depends much of how many components and users it should man-age(the memory and processor needs increase by increasing of the user requests), but basically all computers that can run an Apache Web Server and PHP should work ne.2.2Software requirementsThe following software should already be installed on the target machine:•UNIX or Linux(Windows possible too)•Apache Web Server(1.3.1or later)•PostgreSQL database(7.2.4or later)•PHP(Version4)•PgAdmin(1.2)•Windows only:Cygwin2.3Creating usersThe rst step is to create a new Unix user who will be the database administrator.This person should be a trusted person because the administrator can also read the Component Server user passwords.Type in a UNIX shell:createuser cserverAnd set for this user the rights to create new databases(answering y at the query).If not already present,create also an Apache user(guest account)for the user connectioncreateuser apacheThis user should not be able to create new databases and users(2x no answers).5ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani2.4Creating the databaseNow we create a new database component_db:1.Copy in a directory(like/usr/local/)the cserver_create_db.sql scriptpresent in the package2.Create the database with the following command:psql template1<cserver_create_db.sqlThis creates a new database component_db with some basic data stored The(default admin)user information:•username:cserver•password:cserver2k4The password can be changed later on.2.5Con guring PHP2.5.1Setting command bu eringEdit the le php.inioutput_bu ering=on2.5.2Con guring outgoing mail accountEdit the le php.iniThis is the mail account used to send user account information to the Component Server usersSMTP=mail.student.ethz.chaccount=account@mail.ethz.ch2.6Creating the cserver root folderCopy the cserver and the rsc folder to the root folder of the Apache distribution cp cserver/Apache_path/web_root/cp rsc/Apache_path/web_root/and copy the cserver_ssl les in the secure path of the Apache distribution cp cserver_ssl/Apache_path/web_root_secure/6ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani2.7Setting pathsIn functions.php(2copies,one located in the/cserver folder the other in the /cserver_ssl folder)Set the absolute path in the global variables.$cserver_path= /cserver/$cserver_ssl_path= https:///cserver/$rsc_path= /cserver/rsc/$img_path= /cserver/rsc/img/$pgAdmin_path= /pgAdmin/2.8TestFinally the installation is complete now you can go to the Component Server homepage and test if all works.7ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani3User guide3.1FeaturesThe functionalities of the component server depend on the type of user you are.A normal user(guest)can:•Search Components by name•Perform an extended Component search(search by Component technol-ogy,category,ratings...)•Consult the Component directory•View descriptions and ratings of Components•Perform a registration to the Component ServerA registered user(Component publisher)can also:•Log into the Component Server•Each registered user has a personal page with all his Components listed •Register new Components•Modify his Components•Modify his user information(username,email address...)•Request a password remainder if he has lost his passwordAn administrator can also:•Modify the central Database via Web with the phppgadmin tool(add a user,add Components,give rights...)3.2Search a Component1.A user can search a component simply by entering in the main page orin the search page header eld the name or a part of the name of the searched component.8ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure1:The Component Server main page2.The search results are then displayedFigure2:The Search results3.The I Feel Lucky button is used to go automatically to the rst founded Component homepage without displaying the search result list.9ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure3:The I Feel Lucky result3.3Extended SearchAn extended search is like a normal search but with more parameters to better de ne a search.I can enter any number of parameters and the query is then performed with an AND over all speci ed parameters.with all of the words:search the Components that have in the description all the speci ed wordswith the exact phrase:search the Components that have in the description this exact phrasewith at least one of the words:search all Components that have in the description at least one of the speci ed wordsResults:Specify the maximum number of results that will returned(10,20, 30,50or100)Component Name:Search all Components that have a name like that speci- edTechnology:Search all Components developed with the speci ed technology Category:Search all Components in the speci ed category(directory listing) Ratings:Search all Components with an Acceptance,Behaviour,Constraint, Design or Extension of at least(or equal,or at last)the speci ed rating(1-10).10ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure4:The Extended Search page3.4Register a new user to Component Server1.Go to the Login page2.Go to the Create Account page3.Fill the following eldsUsername:The desired username,must be uniquePassword:Choose a password that must at least7characters wide Name:Your name and surnameE-Mail:Your E-mail addressURL:Your personal Homepage,if you have one(optional)11ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure5:Adding a new User4.If all is done correctly the user is added,hence an error message is displayed3.5Log into the component Server(Registered Users) 1.Simply go to the Login page and ll in your username and passwordFigure6:The Login page2.If the entered data is correct,you are redirected to your personal Compo-nent Server Homepage12ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure7:A Component Server user Homepage3.6Edit the user information(Registered Users)1.Log into the Component Server2.From your Component Server Homepage go to the Edit User Page3.The edit user page works exactly like the register new user page3.7Add a new Component(Registered Users)1.Log in to the Component Server2.From your Component Server Homepage go to Add New Component3.Fill the new component eldsComponent Name:The name of the new ComponentTechnology:The chosen technology,if the technology is not in the list choose new and enter the new technology in the eld at the left.Category:The category of the Component,if the category is not in the list,choose new and enter the new technology in the eld at the left.Ratings:Enter the Acceptance,Behaviour,Constraints,Design and Ex-tendibility ratings and the descriptions of these factors(optional)Description:A brief description of the functionalities of the Component (optional)URL:The Homepage of the ComponentRelease URL:The address at which i can download the last Component distribution.13ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure8:Add a new Component4.If all is entered correctly you should be redirected to your Component Server Homepage and see the new Component listed under my compo-nents.14ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure9:The new Component is added to My components3.8Edit an existing component(Registered Users)To be able to edit an existing component you must be the Component owner, or an administrator(that can change the Component via the Database admin-istration tool)1.Log in the Component Server2.Either go to the Component Server Homepage of the user and click theEdit Component at the left of the desired Component in the my Compo-nent list,or search the desired Component and click on Edit Component in the search results3.The Edit Component works like the Add New Component.3.9Retrieve password(Registered Users)1.Go to the Login page2.Go to the Password Forgotten page3.Enter your Email Address15ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure10:The Password remainder page4.You should receive an E-Mail with all the login data3.10Change the Database(Administrators only)1.Log into the Component Server2.After successfully login you are redirected to your Component ServerHomepage,if you are an administrator you can access the phppgadmin tool for managing the Database simply by clicking on Database Adminis-tration16ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani4The Development4.1The component_db DatabaseThe Database is the core of the Component Server,all data that is in the Component Server is handled and stored by a central PostgreSQL Database (the component_db Database).For these reasons,we have spent much time in designing an e cient and functional Database schema,and for choosing a fast and reliable DBMS.4.1.1Why PostgreSQLWe have chosen PostgreSQL mainly because of his features,performance,and the fact that PostgreSQL his completely free available.Features:PostgreSQL has most features present in large commercial DBMSs, like transactions,subselects,triggers,views,foreign key referential integrity, and sophisticated locking.PostgreSQL has also some exclusive features,like user-de ned types,inheritance,rules,and multi-version concurrency control to reduce lock contention.Performance:PostgreSQL has performance similar to other commercial and open source databases,and works ne on low-end machines too. Reliability:A DBMS must be reliable,or it is worthless,and PostgreSQL is also very reliable and the code is updated very frequently to improve security and to add new features.License:PostgreSQL is free,both for commercial and non-commercial use. The code is also editable with no limitations.4.1.2The Database schemaThe Database schema has been kept very simple,with only three tables,for e ciency and easy manageability purposes.Here is the Database schema in a SQL script language17ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniFigure11:The component_db schema4.1.3The phppgAdmin toolPhpPgAdmin is a web-based administration tool for PostgreSQL.It is perfect for our Component Server Database because it allows the Component Server administrator to manage the component_db Database easily through a well-designed Web interface.With this tool,it is possible to manage all aspects of users&groups,Databases,schemas,tables,indexes,constraints,triggers... and to manipulate the data executing arbitrary SQL queries.4.2The PHP pages4.2.1Why PHPThere are many scripting languages in the WWW World like JSP,ASP,Perl, JavaScript,...and between all these,we have chosen the PHP Hypertext Pre-18ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milaniprocessor script language.PHP is an HTML-embedded scripting language.Much of its syntax is borrowed from C,Java and Perl with a couple of unique PHP-speci c features thrown in. The goal of the language is to allow web developers to write dynamically gen-erated pages quickly.The reasons why we have chosen this language are that PHP is:E cient:the code is very lightweight,fast and does not require massive amount of resourcesReliable:the produced code and the PHP machine is very stableSupport:PHP has a huge library of built-in functions for WWW related activitiesIntegration:works very well with the Apache Web Server together4.2.2The Component Server structureEach Component Server page is a normal HTML page with PHP scripts em-bedded in it.Frequently used functions like those accessing the Database or controlling the user rights,are put in a special le called functions.php,which can be see as a kind of library of the Component Server.To mention is also the use of Cookies,in fact each time a user access the Compo-nent Server,a Cookie with a unique Session-ID is generated to allow the Server to identify the user and his user session.4.2.3The SecuritySecurity in the Component Server is achieved with the HyperText Transport Protocol Secure(or HTTPS),the standard encrypted communication mecha-nism on the World Wide Web,which is actually just HTTP over SSL.All sensible Component Server pages which require a secure connection(for ex-ample the login page which needs a secure an encrypted connection to the Server to transmit the username and password data),are put in a special subdirectory of Apache(the https directory)so that all access to these pages is encrypted and secure.Another security mechanism used,is to allow Database access only to local users,so remote users can access the Database only through veri ed secure PHP scripts.19ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele Milani5BugsNo known bugs until now,but the system has not yet been extensively tested. 6Future Works•Inquire and resolve possible security issues•Improve page layout(for example with css)•Add new functionalities(like the possibility to sort the search results bya rating...)7CreditsI would like to thank the following people:•Till G.Bay for helping me all along the project and also tutoring this Semester Thesis•Professor Bertrand Meyer•The PHP and PostgreSQL developers for creating such good open source products20ETHZ D-INFKProf.Dr.Bertrand Meyer Component Server Samuele MilaniReferences[1]Cornelia Boenigk:PostgreSQL und PHP.Dpunkt Verlag,2002[2]Eric Rosebrock:PHP Sessions Introduction.2002[3]Rasmus Lerdorf.PHP Advanced Tutorial.2002[4]Chris Shiftlett:PHP Security.O'Reilly Open Source Convention200421。
英文作文网站制作I love creating websites in English because it allows me to express my thoughts and ideas in a creative and engaging way. It's like painting a picture with words and images, where I can showcase my skills and share my passions with the world.Designing a website is like building a virtual home where visitors can come and explore what I have to offer. I enjoy playing around with different layouts, colors, and fonts to create a visually appealing and user-friendly experience. It's all about making a good first impression and keeping people interested in what I have to say.One of the best things about making an English website is the ability to reach a global audience. I can connect with people from all over the world and share my content with them. It's amazing to think that someone on the other side of the planet could be reading my words and feeling inspired by what I have to say.I also love the challenge of keeping my website updated and relevant. Whether it's adding new content, responding to comments, or optimizing for search engines, there's always something to do to improve the user experience. It's a constant process of learning and growing, which keeps me motivated and engaged in my work.Overall, creating an English website is a rewarding and fulfilling experience. It allows me to express myself creatively, connect with a global audience, and challenge myself to constantly improve and evolve. It's a way for me to share my passions and ideas with the world, and I wouldn't have it any other way.。
网站设计作文英文When it comes to website design, the first thing that comes to mind is the visual aspect. A good website should be visually appealing and easy to navigate. It should have a clean and modern design that reflects the brand's identity. The use of colors, fonts, and images should be carefully chosen to create a cohesive and attractive look.In addition to the visual aspect, a website should also be user-friendly. This means that it should be easy to use and navigate, with clear and intuitive navigation menus. The layout and structure of the website should be logical and easy to understand, so that users can quickly find the information they are looking for.Another important aspect of website design is responsiveness. A good website should be able to adapt to different screen sizes and devices, such as smartphones and tablets. This ensures that users have a consistent and enjoyable experience, no matter what device they are usingto access the website.In terms of content, a good website should have high-quality and relevant information that is easy to read and understand. The use of clear and concise language, as well as well-organized content, is essential for engaging and retaining the attention of the audience.Finally, a good website should also be optimized for search engines. This means that it should be built with SEO best practices in mind, so that it can rank well in search engine results and attract organic traffic.In conclusion, website design is a crucial aspect of creating a successful online presence. A good website should be visually appealing, user-friendly, responsive, and optimized for search engines. By paying attention to these key aspects, businesses can create a website that effectively engages and converts visitors.。
英语作文网站制作Creating an English writing website is a great way to share your thoughts and ideas with the world. You can write about anything that interests you, whether it's travel, food, fashion, or technology. The key is to write in a way that is engaging and easy to understand. You want your readers to feel like they are having a conversation with you, so use a conversational tone and avoid using overly formal language.When creating your website, it's important to think about the layout and design. You want your site to be visually appealing and easy to navigate. Consider using a clean and simple design that allows your writing to take center stage. You can also add images and videos to enhance your content and make it more engaging for your readers.In addition to writing articles, you can also consider adding a blog to your website. This will allow you to share more personal stories and connect with your readers on adeeper level. You can also use your blog to share updates about your writing, such as new projects or upcoming events.Another important aspect of creating an English writing website is promoting your work. You can use social media to share your articles and blog posts with a wider audience. You can also consider reaching out to other writers and websites to collaborate and cross-promote each other's work.Overall, creating an English writing website is a great way to share your passion for writing with the world. Whether you're writing articles, blog posts, or personal stories, the key is to write in a way that is engaging and easy to understand. With the right layout, design, and promotion, you can create a successful website thatconnects with readers from all over the world.。
英文网站建设运营方案模板1. IntroductionThis proposal is designed to outline the plan for the construction and operation of a new website. The purpose of the website is to provide information, resources, and services to the target audience. The website will serve as a platform for communication, interaction, and engagement with our target audience.2. Objectives- To create a user-friendly and visually appealing website that reflects the brand identity and values- To provide valuable and relevant content to the target audience, including articles, videos, and resources- To offer interactive features such as a blog, forum, and social media integration- To optimize the website for search engines and improve its online visibility- To maintain and update the website regularly to ensure its relevance and usefulness to the target audience3. Website Construction3.1 Design and LayoutThe website will have a clean, modern, and professional design to align with the brand identity. The layout will be intuitive and user-friendly, allowing visitors to navigate and access information easily. The design will prioritize the use of images, videos, and graphics to enhance the visual appeal and engagement of the website.3.2 Content CreationContent creation will be a key focus of the website construction. Our team will produce high-quality and relevant articles, videos, and resources to address the interests and needs of the target audience. The content will be informative, engaging, and shareable to encourage interaction and sharing among users.3.3 Technical DevelopmentThe website will be developed using the latest web technologies and tools to ensure optimal performance, security, and compatibility. It will be responsive, meaning it will adapt to different devices and screen sizes. The website will also integrate with social media platforms and other online tools to facilitate user engagement and interaction.4. Website Operation4.1 Content ManagementA content management system (CMS) will be used to manage and update the website. This will allow for easy addition, editing, and removal of content, as well as the scheduling of new content for publication. Our team will be responsible for ensuring that the website offers fresh and relevant content to maintain user interest.4.2 Search Engine OptimizationThe website will be optimized for search engines to improve its online visibility and attract more organic traffic. This will involve keyword research, on-page optimization, link building, and other SEO strategies to increase the website's ranking on search engine results pages.4.3 User EngagementThe website will offer interactive features to encourage user engagement and interaction. This may include a blog for commenting and discussion, a forum for user-generated content, and social media integration to facilitate sharing and interaction. Regular audience feedback will be collected to inform future content and feature development.4.4 Website MaintenanceRegular maintenance of the website will be crucial to ensure its functionality, security, and relevance. This will involve monitoring website performance, fixing technical issues, updating software and plugins, and implementing security measures to protect the website and its users.5. Promotion and Marketing5.1 Social MediaSocial media platforms will be utilized to promote the website and its content. This will involve sharing articles, videos, and resources on social media channels to reach a wider audience and drive traffic to the website. The use of social media advertising and promotions will also be considered to boost the website's visibility and engagement.5.2 Email MarketingAn email marketing strategy will be implemented to engage and retain website visitors. This will involve collecting email addresses from users and sending regular newsletters, updates, and promotions to keep them informed and engaged with the website.5.3 Collaboration and PartnershipsCollaborations and partnerships with relevant organizations, influencers, and websites will be sought to expand the reach and impact of our website. This may involve guest posting, content sharing, and co-marketing efforts to attract new visitors and promote the website.6. Performance Measurement6.1 Website AnalyticsWebsite analytics tools will be used to monitor and measure the performance of the website. This will involve tracking key metrics such as traffic, engagement, user behavior, and conversions to inform decision-making and improvements.6.2 User FeedbackRegular user feedback will be collected to gauge the satisfaction and needs of the target audience. This may include surveys, polls, and user testing to identify areas for improvement and development.6.3 Reporting and AnalysisRegular reports and analysis of website performance will be conducted to identify trends, patterns, and opportunities for growth. This will inform our strategy and tactics to optimize the website for better results.In conclusion, the successful construction and operation of a website require careful planning, execution, and ongoing management. This proposal outlines the essential steps and strategies to build, optimize, and promote a new website to serve the needs and interests of the target audience. By following this plan, we aim to create a successful and sustainable online platform for communication, interaction, and engagement.。
Creating an English composition website is a multifaceted project that involves several steps,from conceptualization to execution.Heres a detailed guide on how to build an effective and userfriendly English composition website:1.Define Your Purpose and Target Audience:Before you start,its crucial to understand why you want to build the website.Is it for educational purposes,to share writing tips,or to provide a platform for students to submit and receive feedback on their compositions?2.Plan Your Content:Decide on the types of content you want to include.This could be anything from writing prompts,grammar lessons,essay examples,to tips on writing styles and structures.3.Choose the Right Domain Name:Select a domain name that is easy to remember and relevant to the content of your website.It should be short,catchy,and preferably include keywords related to English composition.4.Select a Web Hosting Service:Choose a reliable web hosting provider that can offer the necessary bandwidth,storage,and support for your website.Consider factors like uptime,speed,and scalability.5.Design Your Website:The design should be clean,intuitive,and easy to ea responsive design to ensure that the website looks good on all devices,including smartphones,tablets,and desktops.6.Develop the Website:You can either hire a web developer or use a content management system CMS like WordPress,which allows you to build and manage your website without needing to know how to code.7.Create a UserFriendly Interface:Ensure that your website has a clear menu structure, search functionality,and easytouse forms for submitting compositions or leaving feedback.8.Incorporate Multimedia Elements:Use images,videos,and interactive elements to make your content more engaging.For example,you could include video tutorials on writing techniques or interactive quizzes to test users grammar skills.9.Implement SEO Best Practices:To increase your websites visibility on search engines, optimize your content with relevant keywords,use meta tags,and create quality backlinks.10.Ensure Accessibility:Make sure your website is accessible to all users,includingthose with disabilities.This includes using alt text for images,providing transcripts for videos,and ensuring your website is navigable via keyboard.11.Set Up a Feedback System:Allow users to provide feedback on the website and the content.This can help you understand whats working well and what areas need improvement.unch and Promote Your Website:Once your website is ready,launch it and start promoting it through social media,email marketing,and other online channels.13.Monitor and Update Regularly:Keep an eye on your websites performance and user engagement.Update your content regularly to keep it fresh and relevant.14.Engage with Your Users:Respond to comments and feedback,and consider creatinga community forum where users can discuss writing topics and share their work.15.Consider Monetization Options:If you wish to generate revenue from your website, consider options like advertising,sponsored content,or offering premium content or services.By following these steps,you can create an English composition website that is both informative and engaging,providing a valuable resource for students and educators alike.。
英文网站建设运营方案范文1. IntroductionThe purpose of this proposal is to outline a comprehensive plan for the development and operation of an English website. This website will serve as a platform to provide information, resources, and services to English-speaking users. The proposal will cover various aspects such as the website's objective, target audience, design, content management, marketing strategy, and monetization plans.2. Objective and Target AudienceThe objective of the website is to become a leading online resource for English-speaking users seeking information and services in various areas such as travel, education, business, health, and lifestyle. The target audience includes students, professionals, travelers, and anyone with an interest in the English language and culture. By addressing the needs and interests of this target audience, the website aims to attract and retain a large user base.3. Website Design and DevelopmentThe website design should be user-friendly, visually appealing, and responsive across different devices. It should have a clean and intuitive layout, with easy navigation and fast loading speed. The use of high-quality images and videos will enhance the overall user experience. The website will be developed using the latest technologies and frameworks to ensure optimal performance and security.4. Content ManagementTo provide fresh and valuable content to the users, a content management system (CMS) will be utilized. WordPress, a widely-used CMS, will serve as the foundation for the website. Its intuitive interface will make it easy for content creators to manage and update the website's content. A team of experienced writers will be responsible for producing high-quality articles, blog posts, and other forms of content on a regular basis.5. Services and ResourcesThe website will offer a range of services and resources to cater to the needs of its target audience. These may include online English courses, language exchange platforms, travel booking services, job listings, health advice, and more. By providing diverse and valuable resources, the website aims to become a one-stop destination for any English-speaking user.6. Marketing StrategyAn effective marketing strategy is crucial for a website's success. The website will utilize various marketing channels to promote its services and attract users. These may include search engine optimization (SEO), social media marketing, email marketing, andpartnerships with other relevant websites or organizations. Regularly publishing engaging and shareable content will also help drive organic traffic to the website.7. Monetization PlansTo sustain and further develop the website, multiple monetization methods will be implemented. These may include display advertising, sponsored content, affiliate marketing, premium memberships, and e-commerce. Care will be taken to ensure a balance between revenue generation and user experience, so as not to compromise the website's integrity and reputation.8. Website Maintenance and SupportThe website will require ongoing maintenance and technical support to ensure its smooth operation. Regular updates and security patches will be applied to keep the website up-to-date and secure. A dedicated support team will be available to address any issues or inquiries from users promptly.ConclusionIn summary, this proposal outlines a comprehensive plan for the development and operation of an English website. By addressing the needs and interests of the target audience, providing valuable resources and services, implementing effective marketing strategies, and implementing various monetization methods, the website aims to become a leading online platform for English-speaking users. With proper maintenance and support, the website will continue to evolve and grow to meet the ever-changing demands of its users.。
英文网站建设方案Building an English WebsiteIntroduction:In today's digital age, having a website is essential for any business or organization. With the rise of globalization, English has become the universal language of communication. Therefore, it is crucial to have an English website to reach a global audience. This proposal aims to outline a comprehensive plan for the development of an English website.I. Website Design and Development:- Choose a user-friendly content management system (CMS) like WordPress, which allows easy website management and updates. - Create a visually appealing design that aligns with the brand identity and target audience.- Ensure the website is responsive, so it can be easily navigated on different devices, including desktops, laptops, tablets, and smartphones.- Incorporate a user-friendly interface with clear and intuitive navigation menus to enhance user experience.II. Content Strategy:- Develop high-quality and relevant content in English that will engage the target audience.- Conduct thorough keyword research to optimize the website for search engines, allowing it to rank higher in search results.- Create a blog section to publish regular articles related to the business or organization's field, attracting more visitors and establishing authority.- Include multimedia content, such as images, videos, and infographics, to make the website more visually appealing and informative.III. Localization and Translation:- Translate all existing content from the original language to English while ensuring accuracy and maintaining the intended meaning.- Localize specific content, such as product descriptions or services, to tailor them to the English-speaking audience.- Provide multilingual support, enabling users to switch between different languages easily.IV. Search Engine Optimization (SEO):- Optimize the website's structure and content with relevant keywords to improve search engine rankings.- Ensure proper meta tags and descriptions are in place for each page to make the website more visible in search results.- Build high-quality backlinks to increase website authority and credibility in the eyes of search engines.- Regularly monitor and analyze website traffic and performance using tools like Google Analytics to identify areas for improvement.V. Social Media Integration:- Integrate social media platforms (such as Facebook, Twitter, LinkedIn, and Instagram) into the website to promote brand awareness and increase website traffic.- Enable social sharing buttons on blog posts and other content to encourage users to share it on their social media profiles,expanding the website's reach.VI. Security:- Ensure the website is secure and protected against cyber threats, such as hacking or malware attacks.- Regularly update and patch the website's CMS, themes, and plugins to prevent any vulnerabilities.- Implement SSL certification to encrypt data transmission between the website and users, ensuring their privacy. Conclusion:Building an English website is crucial for businesses and organizations that aim to connect with a global audience. By following the proposed website development plan, a user-friendly, visually appealing, and optimized English website can be created. With high-quality content, social media integration, and strong SEO strategies, the website will have the potential to attract more visitors and achieve its desired goals.。
网站设计建议英文作文When designing a website, it's important to consider the user experience. The layout should be clean and easy to navigate, with clear labels and intuitive menus. Users should be able to find what they're looking for without having to click through multiple pages.In terms of visual design, it's important to use high-quality images and graphics that are relevant to the content. Avoid cluttering the page with too many elements, and make sure that the color scheme is visually appealing and consistent throughout the site.Another important aspect of website design is mobile responsiveness. With so many people accessing the internet on their phones and tablets, it's crucial that the site looks and functions well on smaller screens. This means using responsive design techniques and testing the site on multiple devices.When it comes to content, it's important to keep it concise and to the point. Users don't want to wade through paragraphs of text to find the information they need. Use headings, bullet points, and short paragraphs to break up the content and make it easier to scan.Finally, make sure that the website loads quickly. Users have little patience for slow-loading sites, so optimize images, minify code, and use caching techniques to ensure that the site loads as quickly as possible.In conclusion, a well-designed website is one that prioritizes the user experience, with a clean layout, high-quality visuals, mobile responsiveness, concise content, and fast loading times. By focusing on these key areas, you can create a website that not only looks great but also provides a positive experience for its users.。
网站设计英文作文下载温馨提示:该文档是我店铺精心编制而成,希望大家下载以后,能够帮助大家解决实际的问题。
文档下载后可定制随意修改,请根据实际需要进行相应的调整和使用,谢谢!并且,本店铺为大家提供各种各样类型的实用资料,如教育随笔、日记赏析、句子摘抄、古诗大全、经典美文、话题作文、工作总结、词语解析、文案摘录、其他资料等等,如想了解不同资料格式和写法,敬请关注!Download tips: This document is carefully compiled by theeditor. I hope that after you download them,they can help yousolve practical problems. The document can be customized andmodified after downloading,please adjust and use it according toactual needs, thank you!In addition, our shop provides you with various types ofpractical materials,such as educational essays, diaryappreciation,sentence excerpts,ancient poems,classic articles,topic composition,work summary,word parsing,copyexcerpts,other materials and so on,want to know different data formats andwriting methods,please pay attention!The website should have a simple and clear layout. It makes it easy for people to find what they want.Colors are important in website design. Bright and attractive colors can catch people's eyes.Make sure the website is easy to navigate. Users don't want to waste time looking for things.The content on the website should be interesting and useful. That way, people will keep coming back.Good website design also means it works well on different devices. Whether it's a computer or a phone.。
英语作文网站设计Designing an English essay website is a challenging task, but also an exciting opportunity to create a platform for people to learn and improve their English writing skills. The website should be user-friendly and visually appealing, with easy navigation and clear instructions for users to follow. It should also provide a variety ofwriting prompts and examples to inspire and guide users in their writing journey.In addition to writing prompts and examples, the website should also offer tips and techniques for improving writing skills, such as grammar and vocabulary resources, as well as interactive exercises and quizzes to test and reinforce learning. It should also include a section for users to submit their own essays for feedback and constructive criticism from peers and experts.The website should be accessible to people of all ages and backgrounds, with content that is engaging and relevantto a wide range of interests and experiences. It should also be regularly updated with fresh content to keep users engaged and motivated to continue practicing and improving their writing skills.Overall, the goal of the English essay website should be to provide a supportive and inspiring environment for people to develop and express their ideas and opinions through writing. By offering a variety of resources and opportunities for feedback and improvement, the website can help users build confidence and proficiency in their English writing abilities.。
英文网站建设方案详细方案1. 引言英文网站是企业向全球拓展市场、吸引海外客户的重要渠道之一。
为了确保网站能够有效传达企业信息,吸引并与目标客户互动,本文提供了一个详细的英文网站建设方案,包括网站设计与架构、内容策划与管理、技术实现等方面的建议和步骤。
2. 网站设计与架构英文网站的设计与架构对于用户体验和网站效果至关重要。
以下是英文网站设计与架构的一些建议:2.1 网站风格与布局•网站风格应与企业的品牌形象相一致,并考虑到目标用户群的文化背景和审美习惯。
•布局应简洁明了,信息结构清晰,提供用户良好的导航和浏览体验。
2.2 页面响应式设计•确保网站能够在不同设备上,如电脑、平板和手机上正常显示,并提供合适的交互方式。
•使用响应式网页设计,自动适应不同分辨率的设备,保证用户能够方便地浏览和使用网站。
2.3 多语言支持•设计网站时应考虑多语言支持,确保用户可以切换至其它语言,同时提供针对不同语言的翻译和内容优化。
2.4 网站安全保护•使用安全的网络协议(如HTTPS)来保证用户信息的安全传输。
•防止恶意攻击和入侵,定期更新安全补丁,使用防火墙和其他安全措施。
3. 内容策划与管理网站的内容是吸引用户和传递企业信息的重要元素。
以下是内容策划与管理的建议:3.1 网站目标和目标用户群•确定网站的目标和所要达到的效果,如吸引潜在客户、提供产品信息等。
•分析目标用户群的需求和兴趣,以便有针对性地策划和展示内容。
3.2 内容分类和组织•根据网站的目标和目标用户群,将内容进行分类和组织,使用户可以轻松找到所需信息。
•使用清晰的导航和标签,帮助用户快速导航到所需内容。
3.3 内容更新和维护•定期更新网站内容,包括新闻、活动、产品信息等,以保持用户的兴趣和参与度。
•设计合适的内容发布流程和责任分工,确保内容更新的及时性和质量。
4. 技术实现网站的技术实现对于网站的稳定性和功能扩展至关重要。
以下是技术实现的建议:4.1 选择合适的建站平台•根据网站需求和预算,选择合适的建站平台,如WordPress、Wix等。
网页设计英文作文Web design is all about creating a visually appealing and user-friendly website. It involves a lot of creativity and technical skills to make a website that stands out from the rest.When designing a website, it's important to consider the user experience. This means making sure that the website is easy to navigate and that the information is presented in a clear and organized manner.One of the key elements of web design is choosing the right color scheme. Colors can evoke different emotions and can have a big impact on how users perceive a website.Typography is also an important aspect of web design. Choosing the right fonts and text sizes can make a big difference in how the content is consumed.Another important consideration in web design is theuse of images and graphics. These elements can help to make a website more visually appealing and engaging.Responsive design is also crucial in today's mobile-driven world. It's important to ensure that a website looks and functions well on a variety of devices, including smartphones and tablets.In conclusion, web design is a multifaceted discipline that requires a combination of creativity and technical skills. It's all about creating a website that not only looks great but also functions well and provides a great user experience.。
英文版网站建设策划方案第一篇:英文版网站建设策划方案英文版网站建设策划方案一、版面设计1)网站编码:网站按照你公司提供的样本网站风格进行制作,网站前台排版使用utf-8(UTF-8是UNICODE的一种变长字符编码又称万国码,)代码制作(中文版网站一般包含GB2312),不论是英文版本的操作系统还是其他语言版本的操作系统访问本站都是英文。
2)风格样式:按照欧美风格的网站进行排版,文字样式(CSS)使用欧美浏览习惯的风格进行设置。
以及flash等动画的制作。
二、程序设计一般国内网站所制作的中英文版本的网站均使用前后台统一的模式来制作的,在编码上面多也不在意,在制作英文网站首先注意的要点就在考虑用户使用的系统有可能不是中文,那么就不能按照中文的格式来制作了,我给你做的网站是前台和后台分离的模式制作的2个模块的程序编写都是完全不同的。
前台和后台通过数据库作为桥梁进行链接。
前台为纯英文,后台问中文版。
前台程序:按照utf-8编码制作,网站内无任何乱码以及中文显示。
产品图片浏览,以及分页格式插件等都是按照标准的html代码来制作完成的。
程序读取数据库内的数据来实现动态管理。
每个产品的页面可以针对性的进行产品关键词、标题、标签进行设置。
并有一个友情链接的设置可以进行外站链接在后台管理。
我会制作一个xml的网站地图放在首页以便搜索引擎抓取。
后台程序:后台主要是为了维护方便而使用中文代码制作,包含产品分类管理,产品管理,新闻管理以及企业相关信息的管理等内容。
均可以通过后台直接进行文字的修改。
三、优化规则细化1、基本信息设置(包含Title,KeyWords,Description等内容设置,产品展示页面可以针对性的进行单独设置。
)2、产品关键字的密度在产品介绍内自行添加(一般加个四五个就可以)3、网站内的企业新闻和友情链接最好进行定期维护4、在此我也详细看了你给我发来的那个女的给你写的内容,首先我要申明的就是那些内容在新网站里都不是问题。
网站建议报告英文作文After reviewing your website, I have a few suggestions to improve the user experience. Firstly, I noticed that the navigation menu is a bit confusing and could be simplified for easier access to different sections of the site. Additionally, the homepage could benefit from a more visually appealing design to capture the attention of visitors right away.The overall layout of the website is good, but I think it could be more organized. It would be helpful to have clear sections for different types of content, such as blog posts, product information, and customer reviews. This would make it easier for users to find what they are looking for without having to search through the entire site.In terms of content, I think it would be beneficial to add more engaging and informative articles or blog posts. This would not only provide value to your visitors but alsohelp improve your search engine rankings. It's important to keep the content updated and relevant to your target audience.Another suggestion is to optimize the website for mobile devices. Many people access websites from their smartphones or tablets, so it's crucial to ensure that your site is responsive and easy to navigate on smaller screens.Lastly, I would recommend adding a live chat feature to the website. This would allow visitors to easily get in touch with a representative if they have any questions or need assistance. It can also help improve customer satisfaction and lead to increased conversions.Overall, I believe that implementing these suggestions will help enhance the overall user experience and make your website more effective in achieving its goals.。
网站设计英文作文When it comes to website design, the most importantthing is to create a user-friendly experience. Visitors should be able to easily navigate the site and find the information they are looking for without any hassle.The visual aspect of a website is also crucial. A well-designed website should be visually appealing and reflect the brand's identity. This includes using the right color scheme, fonts, and images to create a cohesive andattractive look.Another key element of website design is responsiveness. With the increasing use of mobile devices, it's essential that a website is responsive and can adapt to different screen sizes. This ensures that users have a seamless experience no matter what device they are using.In addition to being user-friendly and visually appealing, a website should also be optimized for searchengines. This involves using the right keywords, meta tags, and other SEO techniques to improve the site's visibility and ranking on search engine results pages.Accessibility is also an important consideration in website design. A website should be accessible to all users, including those with disabilities. This means using proper coding techniques and providing alternative text for images to ensure that all users can access the content.Finally, it's important to regularly update andmaintain a website. This includes fixing any bugs or issues, updating content, and making sure that the site is secure and protected from potential threats. Regular maintenanceis essential for keeping a website running smoothly and effectively.。
关于网络设计的英语作文Title: The Essence of Effective Web Design。
In the digital age, web design plays a pivotal role in shaping the online presence of businesses and individuals alike. A well-designed website not only attracts visitors but also engages them, leading to enhanced user experience and achieving the desired objectives. To delve into the nuances of effective web design, it's imperative to explore key principles and elements that contribute to its success.First and foremost, usability stands as the cornerstone of web design. A user-centric approach ensures that the website is intuitive and easy to navigate, regardless of the device or platform used. This entails clear navigation menus, logical page hierarchy, and responsive design to adapt seamlessly to various screen sizes. By prioritizing usability, designers create an environment where visitors can effortlessly find what they're looking for, fostering a positive interaction with the website.Moreover, the visual appeal of a website greatly influences its effectiveness. A harmonious blend of aesthetics and functionality is essential to captivateusers' attention and convey the intended messageeffectively. This involves thoughtful selection of colors, typography, imagery, and whitespace to create a visually appealing layout that aligns with the brand identity and resonates with the target audience. Consistency in design elements across the website promotes brand recognition and reinforces trust among users.In addition to aesthetics, accessibility is a fundamental aspect of web design that cannot be overlooked. Designing with accessibility in mind ensures that all users, including those with disabilities, can perceive, understand, navigate, and interact with the website effectively. This encompasses factors such as providing alternative text for images, ensuring keyboard navigation, implementing proper contrast ratios for readability, and adhering to web accessibility standards such as WCAG (Web Content Accessibility Guidelines). By prioritizing accessibility,designers not only demonstrate inclusivity but also expand the reach of the website to a wider audience.Furthermore, the performance of a website plays acrucial role in user satisfaction and engagement. Intoday's fast-paced digital landscape, users expect websites to load quickly and perform seamlessly across different devices and network conditions. Optimizing performance involves various techniques such as minimizing file sizes, leveraging browser caching, and employing content delivery networks (CDNs) to deliver assets efficiently. Byprioritizing performance optimization, designers ensurethat visitors have a smooth and uninterrupted browsing experience, reducing bounce rates and increasing conversions.Another key aspect of effective web design is content strategy. Compelling and relevant content not only attracts visitors but also keeps them engaged and encourages them to explore further. A well-defined content strategy involves identifying the target audience, understanding their needs and preferences, and delivering content that is informative,engaging, and valuable. This includes creating compelling headlines, concise and scannable copy, multimedia elements such as videos and infographics, and clear calls-to-action to guide users through the desired actions.Additionally, mobile responsiveness is imperative in today's mobile-first world. With the increasing use of smartphones and tablets, websites must be optimized for mobile devices to provide a seamless browsing experience. This entails designing with a mobile-first approach, prioritizing mobile-friendly layouts, optimizing images and multimedia for smaller screens, and ensuring that all interactive elements are touch-friendly. By embracing mobile responsiveness, designers cater to the growing number of mobile users and enhance the overallaccessibility and usability of the website.In conclusion, effective web design is a multifaceted endeavor that encompasses usability, visual appeal, accessibility, performance, content strategy, and mobile responsiveness. By adhering to these key principles and elements, designers can create websites that not onlyattract and engage visitors but also achieve the desired objectives of the business or individual. In a constantly evolving digital landscape, staying abreast of emerging trends and technologies is essential to continuously enhance the effectiveness of web design and stay ahead of the competition.。
Website Plan for Oriental T emptationsIntroductionIn this essay, it will talk about to create a website for a Chinese restaurant which is Oriental T emptation. This essay will present by 11 parts: First of all, the background of the restaurant.Secondly, the goals of the website.Thirdly, analysis of competitor websites. And then it will talk about target market and use environments, user tasks, information and tools, story board of the website and pagetemplates, process analysis and update process and schedule, and broadcast the website, references list of this report. Finally, it willgive a summary of this report.Background to the restaurant and business goalsOriental T emptations is a Chinese and Malaysian restaurant.It is very famous in many Chinese and some other countries people. Oriental T emptations is located on the centre of Southport, the address is Shop 105/ 50 Marine Parade, the corner of Marine parade and Nerang Road, beside the famous shopping centre Australia Fair and near the Washington Water Park.The restaurant is established in 2007 by Mr Wei Zhang, who is Chinese Malaysian and also is one of the chefs of Oriental T emptations restaurant. The restaurant provides dine in and take way services, guest can get 10% discount for take away from dinner menu. The telephone number for table reserve or pre-order is 5679 2199.The Oriental T emptations have several business goals in next three years.●T o set up a food delivery department.●T o enlarge the restaurant area, double than now.●T o make a profit over 400 thousands Australia Dollars per annual.●T o open another restaurant in Goal Coast, is plans to open on Surfers Paradises.●T o become the top three Chinese restaurant in Goal Coast.Goals of websiteThis website has some goals to achieve.●T o share information to internet users and guests.●T o communication and collaboration with internet users and guests or otherorganization.●T o provide guests an online pattern to order foods or reserve table.The goals of website can behelp the Oriental T emptation restaurant to achieve their business goals.●The website will share information to all internet users, let users to know more about therestaurant and to improve the popularity.●The website will set up a communication section. It gives a way to let guests to maketheir suggestion and complain and also helps the restaurant to communicate with guests.●The website will set up an online food order section for restaurant, include online order,online payment and food delivery.Analysis of competitor websitesT o compare with Cuisine Garden and Domino’s Pizza websites, it can find out each website has their own strength and weakness, and to analyse those strength and weakness is a better way to improve the website quality. Therefore, the website can focus on making a colourful inter face, adding some attractive food pictures and diversity look, also can avoid some weakness such simple interface, unclearly menu and complicated order menu.Target audience/market for website and use environmentTarget audience/market for websiteThe Oriental T emptations restaurant website is design for the audience and market which is like traditional Chinese and Malaysian foods. Otherwise, the audience must be internet user such as, Chinese or Malaysian students who are study in Gold Coast and local people or other countries people who are interesting in Chinese and Malaysian foods. And the price for the meal would be lower than the average level, also the restaurant offer some special set meal for customers. On the other hand, the restaurant will provide some vouchers and discounts for online order.In addition, these audiences can be come from different age groups, but it will focus on young Chinese and Malaysian people. People who earn middle level income would like to browse the website.Use environmentThe website can be browse by different devices, such as desktop, laptop, mobile phone and tablet. The users who use desktop and laptop can use ADSL1 or ADSL 2 to access the internet, no matter use WIFI or connect with cable. However, the users who use mobile phone or tablet to browse the website could be use the EDGE or 3G network or WIFI. Moreover, the website will not require high speed internet access, because there is no video on the website.Due to one of the function for the website is to make an online order and delivery, therefore, the most important thing is provide a safe internet environment for users. “Let's say you have a small business and you want to set up online payments via your Web site. Y our first decision is whether to outsource your payment solution or handle it in-house. For those who want an all-in-one solution, services like PayPal and ProPay make it easy for you to accept credit cards and other forms of electronic payment from your site. When a customer enters his or her information on your site, your payment service authorizes the transaction and transfers funds to your account. These services charge a processing fee per transaction”(/personal-finance/online-banking/electronic-payment4. htm). Use those online payment system services not only is an easy way for a small organisation like Oriental T emptation restaurant, but also is a safe way to do it, and it just charge a small amount service fee for per payment.User tasksThe users can use the website to get any information about the Oriental T emptation restaurant and to have some services from the restaurant, the user tasks for the website is listed under.●T o find out the information of the restaurant, such as restaurant history and so on.●T o find out the restaurant address, map, telephone number and trading hours.●T o view the menu of the restaurant, including the price and charge.●T o order food delivery from the restaurant.●T o reserve table and pre-order dishes.●T o registeras a member of the restaurant.●T o get the voucher from the restaurant.●T o leave a feedback to the restaurant.●T o see the policy of the restaurant.●T o get the information of new food.●T o contact the restaurant and ask question.●T o see other customers feedback and to know about the restaurant.Information and toolsAll the user tasks should have some information and tools to support and serve them.●T o use Adobe Dreamweaver to transfer Fireworks, Freehand or Photoshop to the web pages. ●T o use Photoshop to embellish and modify the photo which to add to the website.●T o use PayPal to build the online payment function.●T o use Flash to build a photo gallery.●T o use Google Map to set a map direction.●T o use Microsoft Word to write a website plan.StoryboardHomepageMenu Dinner LunchHome Member SpecialVoucherSpecial set dinnerOrder onlineTake away DeliveryService Resever tablePre-order About us Contract MapFAQPage templatesProcess analysis and update process and scheduleThe restaurant will arrange a manger as the website processer. The manager is in charge of the website and records the guests’ feedback and comment and checks the email once per day and also answers the phone call. In addition, the manager has to update the website every week or when there is some new information.Marketing techniques●Provide vouchers for people order online delivery.●Provide a free delivery when the amount over $30.●Provide vouchers for cheap lunch.●Provide vouchers for special set dinner.ConclusionThis website plan report has been covering the introduction of the report, the background to the Oriental T emptations restaurant and the business goals for the restaurant. In addition, it has giving the goals of the website and explained how these website goals fit into business goals. Otherwise, the report has analysed two main competitors Cuisine Garden and Domino’s and gave the strength and weakness and described how the website will focus and avoid. Moreover, the report talks about the target audience for website and use environment, user tasks. The report also draws a storyboard and page templates for the website. And then, the report gave the way to manage the website and introduce some marketing techniques. Finally, it gives a conclusion to summary this report.Reference list●.au/●.au/●/tools/online-payment-systems/●/how_4826936_web-site-plan.html●/blog/2011/08/05/how-to-set-up-an-online-payment-form/●/2011/06/09/a-comprehensive-website-planning-guide/●/personal-finance/online-banking/electronic-payment4.htm。