Skip to main content

Competitor's website - research and comparison with my page

Our Task is to research following things on competitor's website:


  1. About
  2. Contact
  3. Product / services pages
  4. Returns Policy
  5. Terms of Service
  6. Privacy Policy
  7. F.A.Q.


 1. About Page
About page exist to inform visitors what is the page about. Provides some general information about webpage or company.


2. Contact
Contact page on my competitor site does not allow users to contact directly with the company. There is only information about social media and link to a support page.

3. Products / services pages (I am not user so I do not have full access to products)
As I am not user of this page, I do not have access to stock exchange. Site provides some of the most important and common products.

4. Returns Policy - No returns are available

5. Terms of Service page
Main purpose of this page is to inform users if the page for example what is the risk of using this website, security that site provides, information about how to become a user and have access to features of site, how to withdrawl, fees. This examples apply to this website and can be different with any other sites depends what is the website about.


6. Privacy Policy
Informs users if the page collects some personal information, data or if the page is using cookies.

7. F.A.Q.
FAQ is section to provide support/information for simple users questions.


And here is how it looks like on my page to comparison

1. About Page

2. Contact

3. Products / Services Available


4-7 In progress



Sources: 
https://support.bittrex.com/hc/en-us
https://bittrex.com/

Comments

  1. This is good, just add a little more commentary on some of the research images - especially if you have been inspired by the layout, design or content of their pages. You could also highlight any changes you may make to your own website design as you evaluate how they look, the content and the usability.

    ReplyDelete
  2. In general, remember to respond to the comments you are receiving from Zoya and myself about how to improve your blog posts. This will mean that you are showing how you are developing as a computing student and means that you can then make sure that the posts you continue to post will be better in content, quality and clarity.

    ReplyDelete

Post a Comment

Popular posts from this blog

Survey results and analysis + SWOT Analysis

In the last weeks I have created a survey to gather informations, which can potentially give me some ideas about my software and how I can improve it in order to fulfil expectations of potential clients. To analyse all of data gathered I used charts that were generated automatically in the Google Forms and SWOT Analysis of data in charts. In the first part of my survey I am asking respondents about themselves do predict if there are any chances that they are on some higher positions in companies that they are working for. The variation of both higher age and higher education - age 30+ and bachelors level of education and above makes possibilities that the respondent is currently on some higher position. I decided to use this variation instead of asking respondent directly, because I am aware of that maybe not everyone want to share such information with survey even if they are anonymous. As we are able to see on the chart there is an impressive number of people who have educati...

Back-end of application - C# and the Google Vision API

In this post I will be writing about following: Connecting the Google Cloud Vision API to C#, benefits of using this API, why I choose the Vision API, code written to make my software working, bugs that I need to solve in future versions Connecting API to C# To use Google Cloud API's we need to configure and download account credential '*.JSON' file. To work with the Google Vision API we need also to reconfigure our windows settings by adding path of JSON file to our environmental variables, which you can see below As we finish adding our environmental variable we can go further to the next step, which is preparing our programming language to work with API, in this case C#. Firstly, I have downloaded NuGet Google Cloud package to work it Secondly, after we configured everything successful we can import Google package to call it after in code. To do that in C# we need following 'using' statement With this last step I am fully configure...