Category: Website Design

  • how to design website

    do youu want to know how to create and design web sites inform

  • Complete phase 2 of the website

    There are 4 parts to this courses assignments. In the first half the course there is 1 assignment that is given in 2 parts (one part or phase per week). The overall intent is to design and implement a fictitious car parking lot management system using HTML, CSS, PHP, and MySQL database engine. Apache should be used as the application server. You may use JavaScript and Bootstrap additionally but must point out where you use it and why you feel it was necessary.

    Phase 2:

    1. Website design extended for new use cases

    Add a set of additional web pages to perform the following use cases. You may assume the parking lot attendant checks in and checks out customers.

    1. View parking garage occupancy (5pts)
      1. number of open spaces available,
      2. detailed view of how many spaces remain available on each level.
    2. Record incoming vehicle (5pts)
      1. Create a page where the attendant registers incoming car, assume a camera records the license plate of the vehicle and time of entry is recorded, and attendant simply clicks a button to issue a Parking Slip
      2. Update the internal data as to how many spaces are still available in the lot.
      3. Park the vehicle on a randomly chosen level as long as there is capacity.
    3. Record leaving vehicle (5pts)
      1. Create a web page that the lot attendant uses to checkout the vehicle
      2. Record the leaving time and calculate parking slip fee due (use hourly rate or part thereof at $1/hour).
      3. Update the internal data as to how many open spaces remain on which levels.
    4. Create a top-level menu page (5pts)

    This should offer the operator all use cases implemented by you from Assignment 1 and 2, once that operator is logged into the system.

    1. Database design (5pts)

    Implement any extensions to your data model you feel may be needed to support these additional use cases in mySQL. You may still use the following link: as an example to help you define these tables, however do not use everything that is in that data-model as it is not pertinent to this assignment. You may use some of the fields from that data model to guide you as to how to design your tables.

    Every web-page must have header and footer and a uniform look at feel (for which you may want to use CSS style sheets).

    1. The header must display the banner which is made of tiles of images. The title must be displayed on the banner. The title must be ACME Parking.
    2. The footer must contain the name of the developer and the link which allows the web-user to send feedback to the developer.
    3. There must be a navigation bar on each page. It must be located on the left-hand side of every page. The navigation bar options vary depending on the categories of functionalities where the web-user is currently at.
    4. Each main page of each category may display an image icon representing the category of functionalities.
    5. The default web-sites page must be named index.php. On this page, the navigation bar contains only one Login button.
    6. Once logged on, the web user can navigate around the web-site using the navigation bar, depending on the privilege.
    7. While logged in each page must display the user-name who is currently logging on the system.

    Each page must be secured and protected from being accessed without logging onto the system.

    Requirements: complete

  • editing a website

    im working on a website and just need few edits

  • MYSQL USING MARIA DB

    question 1 (6 points)

    For workers’ safety, restaurants designate how long an employee may work in a specific work area. This is enforced in potentially hazardous areas. For example, restaurants may state that a worker may not work on a stir fry for more than four hours in a space of six hours.

    Write a query that creates a sequence that you will later use to populate a primary key. The sequence should start at 1 and increment by 1.

    Write a query that uses the sequence you just created to create a table named KITCHEN_SCHEDULE.

    The table is to show the name of the work areas (such as stir fry, oven, boiler, stove top) and the minimum and maximum number of hours to work in such areas and in specific periods. For example, the stir fry worker can be scheduled for 2 to 4 hours every 6 to 8 hours. In addition to that, the worker should not exceed 12 hours total of 16 hours.

    The Write a query that uses the sequence you just created to create a table named Write a query that uses the sequence you just created to create a table named KITCHEN_SCHEDULE. The table should have the following fields

    1. Schedule identifier as an integer populated by a value from the sequence. This is the primary key.
    2. Name of the work area as a variable character of length 50.
    3. Minimum number of hours to work in the work area. For example, Stir Fry will be a minimum of 2 hours.
    4. Maximum number of hours to work in a shift. For example, someone working on Stir Fry may not work continuously for more than 4 hours.
    5. Period of control is an integer on how long the control period is. In this case, no more than 2 to 4 hours in 6 hours. 6 hours is the control period.
    6. Day period control time. That would be the total amount of time to fit all the sessions per day. For example, the shift is 2 to 4 hours every 6 hours for 16 hours. That 16 hours is the working control period.

    Use a check constraint to ensure that the hours do not exceed the maximum number of hours in a shift. Assume that the maximum is 12 for all work areas that will be recorded on this table.

    Create a unique constraint to ensure there are no duplicate work areas.

    Create an ordering index to order the work areas by maximum number of hours per shift.

    Populate the table with values. You decide the work area and the hours for each. You may insert one or a few records.

    With that done, write a query that draws data from this information by concatenating strings with data values. For example, your query will output a sentence such as

    “Stir Fry schedule should be a 2 to 4 hours within 6 hours in a 16 hour period”

    Feel free to alter this sentence as you want but use all values in the table.

    For submission, provide the following

    1. A screenshot showing the query that creates the sequence
    2. A screenshot showing the query that creates the table
    3. A screenshot of the query that creates the ordering index.
    4. A screenshot showing the query that populates the KITCHEN_SCHEDULE table for the work areas.
    5. A screenshot that shows the results of the query SELECT * FROM KITCHEN_SCHEDULE.
    6. The query that prints the sentence of work areas and work duration.

    Question 2 (4 points)

    Based on the company database, write a query that shows the employee who works the least hours. It is a total of all hours for that employee regardless of the project.

    HINT: You may create a subquery or with statement to show how many hours every ESSN worked. That way you know which employee it is before you write the query to get the names.

    Question 3 (6 points)
    Based on the company database, write a query that lists the following attributes and conditions from the EMPLOYEE table

    1. The employee’s name concatenated as first, middle initial, and last. This column should be headed to Employees Name in uppercase.
    2. Add a dot after the middle initial. For example ALICIA J. ZELAYA
    3. Date of birth headed as BIRTH DATE
    4. Address in upper case and headed ADDRESSS
    5. Sex in uppercase headed as GENDER. Where sex = F report that as Female in uppercase. When sex is M report it as Male in upper case.
      Salary
    6. Create a column named REPORTING ARRANGEMENT to show the name of the manager. For this column, if the employee is female the data on the field should be She reports to Managers name.
    7. Department in upper case
    8. Order the query output by ascending the first column.

    For submission provide a screenshot of the query output. The output of the query should match the image below.

    A table with numbers and lettersAI-generated content may be incorrect.

    Question 4 (4 points)

    The query below lists all studio managers and their schedules for managing studios. It uses the following relations

    STUDIO {STUDIO_ID, STUDIO_CITY, STUDIO_NAME}

    STUDIO_MANAGER {STUDIO_MANAGER_ID, FIRST_NAME, LAST_NAME, EMAIL_ADDRESS, PHONE_NUMBER}

    MANAGER_ASSIGNMENTS {MANAGER_ASSIGNMENT_ID, STUDIO_ID,STUDIO_MANAGER_ID, START_DATE, END_DATE}

    Rewrite the query to list only those managers managing a studio on March 5, 2025.

    SELECT STUDIO.STUDIO_CITY, STUDIO.STUDIO_NAME, FIRST_NAME, LAST_NAME, EMAIL_ADDRESS, PHONE_NUMBER, START_DATE, END_DATE
    FROM MANAGER_ASSIGNMENTS JOIN STUDIO ON MANAGER_ASSIGNMENTS.STUDIO_ID = STUDIO.STUDIO_ID
    JOIN STUDIO_MANAGER ON MANAGER_ASSIGNMENTS.STUDIO_MANAGER_ID = STUDIO_MANAGER.STUDIO_MANAGER_ID

    A screenshot of a computerAI-generated content may be incorrect.

    Submit a screenshot of the query and the query output.

    Make sure of the following before you upload the file:

    1. Use your name and Final Exam Part B as “File Name” (e.g., Last_Final_B).
    2. Add your name and Final Exam Part B at the top of first page for example: // Last Final Exam Part B.
    3. Make sure you upload the file in HTML format only. The file should include both the queries and the results of the query and your name at the top.
    4. File submitted in DOC or any other format is not acceptable and will not be graded.
    5. Hand written and scanned files are not acceptable and will not be graded.

    Requirements: complete

  • Floor Plan 2 FLoor + Section

    I need a floor plan for the ground floor and first floor. The project site is located on Palm Jumeirah within a linear waterfront townhouse development. The base module is a cubic volume measuring 9m 9m 9m. Using Autocad

    Students may transform the living box through volumetric composition by shifting, stacking, subtracting, or combining while ensuring that the overall height does not exceed 9 meters.

  • Main entrance on the North elevation.
  • South elevation maintains a strong visual connection to water views.
  • (Scale 1:50)

    Ground & First Floor Furniture Plans

    Follow technical checklist regarding line weights, annotations, circulation clarity,

    dimensions, cabinetry, and readability.

    -Sections One section must cut through the staircase. Exterior walls = 30cm, interior walls = 20cm, slab = 30cm. Use clear graphical hierarchy and annotations.

    Staircase/ Stairway- L stairs

    Kitchen Types- L shape + island

    Bathrooms, introduction, and function: space requirements in bathrooms,

    WC (Water Closet), guest toilets, master bathrooms with shower/ bathtub along with

    furniture and fittings. Diagrams, drawings, and dimensions are to be provided.

    Wardrobes- Built in wardrobe (clothing is hidden)

    Ground floor= stairs, kitchen, living room, pool, guest washroom

    First floor= bedroom, closet, office, bathroom

    The client said the home is a productive thinking environment.

    So the office should:

    MUST BE CLOSE TO:

    Quiet zone

    Bedroom area (same private level)

    Natural light source

    South facade or skylight

    MUST BE FAR FROM:

    Kitchen noise

    Entrance traffic

    Guest areas

    DESIGN LOGIC:

    Office = Private + Calm + Isolated

    B. BEDROOM RELATIONSHIPS

    The bedroom is used mostly at night for reflection.

    MUST BE CLOSE TO:

    Wardrobe

    Master bathroom

    Office (optional but ideal)

    KEEP in mind the volumetric composition design of the house when creating the plan.

    I will attach an image of how the villa would look on the outside, keep that in mind for the plans. the volumetric composition.

    Make sure to label everything on the plan as well as measurments.

    Requirements:

  • Floor Plan 2 FLoor + Section

    I need a floor plan for the ground floor and first floor. The project site is located on Palm Jumeirah within a linear waterfront townhouse development. The base module is a cubic volume measuring 9m 9m 9m. Using Autocad

    Students may transform the living box through volumetric composition by shifting, stacking, subtracting, or combining while ensuring that the overall height does not exceed 9 meters.

  • Main entrance on the North elevation.
  • South elevation maintains a strong visual connection to water views.
  • (Scale 1:50)

    Ground & First Floor Furniture Plans

    Follow technical checklist regarding line weights, annotations, circulation clarity,

    dimensions, cabinetry, and readability.

    -Sections One section must cut through the staircase. Exterior walls = 30cm, interior walls = 20cm, slab = 30cm. Use clear graphical hierarchy and annotations.

    Staircase/ Stairway- L stairs

    Kitchen Types- L shape + island

    Bathrooms, introduction, and function: space requirements in bathrooms,

    WC (Water Closet), guest toilets, master bathrooms with shower/ bathtub along with

    furniture and fittings. Diagrams, drawings, and dimensions are to be provided.

    Wardrobes- Built in wardrobe (clothing is hidden)

    Ground floor= stairs, kitchen, living room, pool, guest washroom

    First floor= bedroom, closet, office, bathroom

    The client said the home is a productive thinking environment.

    So the office should:

    MUST BE CLOSE TO:

    Quiet zone

    Bedroom area (same private level)

    Natural light source

    South facade or skylight

    MUST BE FAR FROM:

    Kitchen noise

    Entrance traffic

    Guest areas

    DESIGN LOGIC:

    Office = Private + Calm + Isolated

    B. BEDROOM RELATIONSHIPS

    The bedroom is used mostly at night for reflection.

    MUST BE CLOSE TO:

    Wardrobe

    Master bathroom

    Office (optional but ideal)

    KEEP in mind the volumetric composition design of the house when creating the plan.

    I will attach an image of how the villa would look on the outside, keep that in mind for the plans. the volumetric composition.

    Make sure to label everything on the plan as well as measurments.

    Requirements:

  • INSS 675 – Information Systems Practicum 2

    PLEASE START IMMEDIATELY.

    I need you to create a fully developed working website. I will show you what we have done, and I want it mimicked.

    Click the Bowie Connect Hub Link, and it should take you to the website we’re already developing. We stopped because we are having a hard time making it clickable and a actual working functioning website. Below I will drop our final techinal report so you can understand the project and what’s needed.

    Requirements: until complete

  • Design a website for online shop of perfume.

    <!DOCTYPE html>

    <html lang=”en”>

    <head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>L’Essence | Luxury Perfumes</title>

    <!– Google Fonts –>

    <!– FontAwesome for Icons –>

    <style>

    /* — CSS VARIABLES & RESET — */

    :root {

    –primary-color: #0F172A; /* Deep Midnight Blue */

    –accent-color: #D4AF37; /* Gold */

    –bg-color: #F9F9F9; /* Cream */

    –white: #FFFFFF;

    –text-dark: #333333;

    –text-light: #666666;

    –font-serif: ‘Playfair Display’, serif;

    –font-sans: ‘Montserrat’, sans-serif;

    –transition: all 0.3s ease;

    }

    * {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    }

    body {

    font-family: var(–font-sans);

    background-color: var(–bg-color);

    color: var(–text-dark);

    line-height: 1.6;

    }

    a { text-decoration: none; color: inherit; }

    ul { list-style: none; }

    img { max-width: 100%; display: block; }

    /* — UTILITY CLASSES — */

    .container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    }

    .btn {

    display: inline-block;

    padding: 12px 30px;

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 600;

    cursor: pointer;

    transition: var(–transition);

    border: none;

    }

    .btn-primary {

    background-color: var(–primary-color);

    color: var(–white);

    border: 1px solid var(–primary-color);

    }

    .btn-primary:hover {

    background-color: var(–accent-color);

    border-color: var(–accent-color);

    }

    .btn-outline {

    background-color: transparent;

    color: var(–primary-color);

    border: 1px solid var(–primary-color);

    }

    .btn-outline:hover {

    background-color: var(–primary-color);

    color: var(–white);

    }

    /* — HEADER & NAVIGATION — */

    header {

    background-color: var(–white);

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

    position: sticky;

    top: 0;

    z-index: 1000;

    }

    .nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 80px;

    }

    .logo {

    font-family: var(–font-serif);

    font-size: 1.8rem;

    font-weight: 700;

    color: var(–primary-color);

    letter-spacing: 1px;

    }

    .nav-links {

    display: flex;

    gap: 30px;

    }

    .nav-links a {

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(–text-dark);

    transition: var(–transition);

    }

    .nav-links a:hover {

    color: var(–accent-color);

    }

    .nav-icons {

    display: flex;

    gap: 20px;

    font-size: 1.2rem;

    cursor: pointer;

    }

    /* Mobile Menu Toggle */

    .menu-toggle { display: none; }

    /* — HERO SECTION — */

    .hero {

    height: 85vh;

    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url(‘https://images.unsplash.com/photo-1595435934249-5df7ed86e1c0?q=80&w=1932&auto=format&fit=crop’);

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(–white);

    }

    .hero-content h1 {

    font-family: var(–font-serif);

    font-size: 3.5rem;

    margin-bottom: 20px;

    font-style: italic;

    }

    .hero-content p {

    font-size: 1.2rem;

    margin-bottom: 30px;

    font-weight: 300;

    }

    /* — CATEGORIES SECTION — */

    .categories {

    padding: 80px 0;

    text-align: center;

    }

    .section-title {

    font-family: var(–font-serif);

    font-size: 2.5rem;

    color: var(–primary-color);

    margin-bottom: 10px;

    }

    .section-subtitle {

    color: var(–accent-color);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    margin-bottom: 50px;

    display: block;

    }

    .category-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

    }

    .category-card {

    position: relative;

    overflow: hidden;

    height: 300px;

    }

    .category-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

    }

    .category-card:hover img {

    transform: scale(1.1);

    }

    .category-info {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 20px;

    background: linear-gradient(transparent, rgba(0,0,0,0.7));

    color: var(–white);

    }

    .category-info h3 {

    font-family: var(–font-serif);

    font-size: 1.5rem;

    }

    /* — PRODUCT SHOWCASE — */

    .products {

    background-color: var(–white);

    padding: 80px 0;

    }

    .product-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 40px;

    }

    .product-card {

    text-align: center;

    group: hover;

    }

    .product-image-container {

    position: relative;

    background-color: #f4f4f4;

    height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    overflow: hidden;

    }

    .product-image-container img {

    width: 80%;

    transition: var(–transition);

    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));

    }

    .product-card:hover .product-image-container img {

    transform: scale(1.05) rotate(-5deg);

    }

    .product-actions {

    position: absolute;

    bottom: -50px;

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 10px;

    transition: var(–transition);

    }

    .product-card:hover .product-actions {

    bottom: 20px;

    }

    .action-btn {

    width: 40px;

    height: 40px;

    background-color: var(–white);

    border: 1px solid #ddd;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(–transition);

    box-shadow: 0 4px 6px rgba(0,0,0,0.05);

    }

    .action-btn:hover {

    background-color: var(–primary-color);

    color: var(–white);

    border-color: var(–primary-color);

    }

    .product-details h3 {

    font-family: var(–font-serif);

    font-size: 1.2rem;

    color: var(–primary-color);

    }

    .product-brand {

    font-size: 0.8rem;

    color: var(–text-light);

    text-transform: uppercase;

    margin-bottom: 5px;

    }

    .product-price {

    font-weight: 600;

    color: var(–accent-color);

    }

    /* — PRODUCT DETAIL PREVIEW (Visual Accord) — */

    .scent-notes {

    margin-top: 15px;

    display: flex;

    justify-content: center;

    gap: 5px;

    }

    .note-tag {

    font-size: 0.7rem;

    background-color: #f0f0f0;

    padding: 4px 8px;

    border-radius: 20px;

    color: #555;

    }

    /* — DISCOVERY SET BANNER — */

    .discovery-banner {

    background-color: var(–primary-color);

    color: var(–white);

    padding: 60px 0;

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    }

    .discovery-text {

    text-align: left;

    max-width: 600px;

    }

    .discovery-text h2 {

    font-family: var(–font-serif);

    font-size: 2.5rem;

    margin-bottom: 15px;

    }

    .discovery-text p {

    margin-bottom: 20px;

    opacity: 0.9;

    }

    /* — FOOTER — */

    footer {

    background-color: #0b1120;

    color: #aaa;

    padding: 60px 0 20px;

    }

    .footer-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 40px;

    margin-bottom: 40px;

    }

    .footer-col h4 {

    color: var(–white);

    font-family: var(–font-serif);

    margin-bottom: 20px;

    font-size: 1.2rem;

    }

    .footer-col ul li {

    margin-bottom: 10px;

    }

    .footer-col ul li a:hover {

    color: var(–accent-color);

    }

    .social-links a {

    margin-right: 15px;

    font-size: 1.2rem;

    }

    .copyright {

    text-align: center;

    border-top: 1px solid #1f2937;

    padding-top: 20px;

    font-size: 0.8rem;

    }

    /* — MEDIA QUERIES — */

    @media (max-width: 768px) {

    .nav-links { display: none; }

    .menu-toggle { display: block; font-size: 1.5rem; }

    .hero-content h1 { font-size: 2.5rem; }

    .discovery-banner { justify-content: center; text-align: center; }

    .discovery-text { text-align: center; margin-bottom: 20px; }

    }

    </style>

    </head>

    <body>

    <!– Navigation –>

    <header>

    <div class=”container nav-container”>

    <div class=”menu-toggle”>

    <i class=”fas fa-bars”></i>

    </div>

    <a href=”#” class=”logo”>L’Essence.</a>

    <nav class=”nav-links”>

    <a href=”#”>Home</a>

    <a href=”#”>Women</a>

    <a href=”#”>Men</a>

    <a href=”#”>Discovery Sets</a>

    <a href=”#”>Our Story</a>

    </nav>

    <div class=”nav-icons”>

    <i class=”fas fa-search”></i>

    <i class=”far fa-heart”></i>

    <i class=”fas fa-shopping-bag”></i>

    </div>

    </div>

    </header>

    <!– Hero Section –>

    <section class=”hero”>

    <div class=”container hero-content”>

    <h1>Find Your Signature Scent</h1>

    <p>Curated luxury fragrances from the world’s most exclusive houses.</p>

    <a href=”#shop” class=”btn btn-primary”>Explore Collection</a>

    </div>

    </section>

    <!– Categories –>

    <section class=”categories”>

    <div class=”container”>

    <span class=”section-subtitle”>Curated For You</span>

    <h2 class=”section-title”>Shop by Category</h2>

    <div class=”category-grid”>

    <div class=”category-card”>

    Women Perfume

    <div class=”category-info”>

    <h3>Feminine</h3>

    </div>

    </div>

    <div class=”category-card”>

    Men Perfume

    <div class=”category-info”>

    <h3>Masculine</h3>

    </div>

    </div>

    <div class=”category-card”>

    Unisex Perfume

    <div class=”category-info”>

    <h3>Unisex</h3>

    </div>

    </div>

    </div>

    </div>

    </section>

    <!– Featured Products –>

    <section class=”products” id=”shop”>

    <div class=”container”>

    <div style=”text-align: center; margin-bottom: 40px;” >

    <span class=”section-subtitle”>Best Sellers</span>

    <h2 class=”section-title”>The Collection</h2>

    </div>

    <div class=”product-grid”>

    <!– Product 1 –>

    <div class=”product-card”>

    <div class=”product-image-container”>

    Perfume Bottle

    <div class=”product-actions”>

    <button class=”action-btn”><i class=”fas fa-shopping-bag”></i></button>

    <button class=”action-btn”><i class=”far fa-heart”></i></button>

    </div>

    </div>

    <div class=”product-details”>

    <div class=”product-brand”>Chanel</div>

    <h3>Gabrielle Essence</h3>

    <div class=”scent-notes”>

    <span class=”note-tag”>Floral</span>

    <span class=”note-tag”>Jasmine</span>

    </div>

    <div class=”product-price”>$135.00</div>

    </div>

    </div>

    <!– Product 2 –>

    <div class=”product-card”>

    <div class=”product-image-container”>

    Perfume Bottle

    <div class=”product-actions”>

    <button class=”action-btn”><i class=”fas fa-shopping-bag”></i></button>

    <button class=”action-btn”><i class=”far fa-heart”></i></button>

    </div>

    </div>

    <div class=”product-details”>

    <div class=”product-brand”>Dior</div>

    <h3>Sauvage Elixir</h3>

    <div class=”scent-notes”>

    <span class=”note-tag”>Spicy</span>

    <span class=”note-tag”>Amber</span>

    </div>

    <div class=”product-price”>$160.00

    Requirements:

  • I need a website

    I need a website that can be in English and Hungarian (I provide the Hungarian and English version as well.) I need it to look friendly, warm to teach young kids and adults English in Hungary. Website name: englishwithanett.com

    Requirements:

  • I want to make a business website

    I need a website that can be in english and hungarian (I provide the Hungarian and English version as well.) I need it to look friendly, warm to teach young kids and adults English in Hungary. Website: englishwithanett.com

    Requirements: