练习6_猫眼电影.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <script src="./js/rem.js"></script>
  8. <link rel="stylesheet" href="https://at.alicdn.com/t/c/font_4824002_lqndx9h5b3d.css">
  9. <style>
  10. body{
  11. margin: 0;
  12. }
  13. .container header{
  14. width: 100%;
  15. height: 1rem;
  16. background-color: #e54847;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. position: relative;
  21. }
  22. .container header span{
  23. font-size: .3rem;
  24. color: #fff;
  25. }
  26. .container header i{
  27. position: absolute;
  28. right: 20px;
  29. top:50%;
  30. transform: translateY(-50%);
  31. color: #fff;
  32. font-size: .5rem;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="container">
  38. <header>
  39. <span>猫眼电影</span>
  40. <i class="iconfont icon-ego-menu"></i>
  41. </header>
  42. <nav></nav>
  43. <div class="content">
  44. <div class="like-movie"></div>
  45. <div class="movie-list"></div>
  46. </div>
  47. <footer></footer>
  48. </div>
  49. </body>
  50. </html>