making a beautiful website as same as an "apple.com"
Using HTML, CSS, and public-domain images, we are recreating apple's homepage from scratch. Writing all in the HTML and the CSS ourselves. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>apple</title> <style> body { margin: 0; font-family: Arial, Helvetica, sans-serif; } img { width: 100%; } .navbar { overflow: hidden; background-color: black; position: fixed; top: 0; width: 100%; height: 45px; line-height: 44px; text-align: center; } .navbar a { float: left; display: block; color: grey; text-align: center; text-decoration: none; margin: 0px 40px; justify-content: center; } .navbar a img { text-align: center; margin-top: 7px; } .navbar a:hover { background: black; color: white; ...