Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>particles-sample</title>
  6. </head>
  7. <body>
  8. <section>
  9. <p>Particles Article</p>
  10. <br>
  11. <p>Until about a decade ago, American newspapers had a clear idea what the "news" was. It was what the prime ministers and presidents of leading countries announced at press conferences. It was politics and diplomacy and cabinet shuffles. It was economic statistics and business mergers and Wall Street. But over the last dozen years, there has been a growing movement in American newspapers away from that conception of news and toward something looser, more feature-oriented, and more trend-driven.
  12. Max Frankel, who ruled as executive editor of the New York Times from 1986 through 1994 and thus helped set the journalistic agenda, pioneered the concept of soft features on the front page. Frankel wanted newspapers to be read, and he argued that articles about country music and miniskirts were not only engaging but also reflected important trends: Many readers probably cared more about hemlines than about arms-control talks.
  13. Under Frankel, the Times also began to search for new and compelling ways to cover foreign affairs in the post-Cold War world. Editors felt that politics mattered less than before, and that correspondents should write increasingly about the people of foreign countries rather than just the governments. Correspondents were pushed to spend less time in the national capitals talking to cabinet ministers and more time in rural areas talking to farmers and homemakers. There was more attention to trends; indeed, Frankel emphasized that "sometimes the most important news doesn't happen on any one day."
  14. </p>
  15. <br>
  16. <p>Rinimaru</p>
  17. </section>
  18. <div id="particles"></div>
  19. <script src="particles.min.js"></script>
  20. <script src="setting.js"></script>
  21. </body>
  22. <style>
  23. body {
  24. margin: 0;
  25. }
  26. section {
  27. color: #ffffff;
  28. background-color:#000000c7;
  29. border: solid 1px #5eff00;
  30. width: 600px;
  31. margin: 80px auto 0;
  32. text-align: center;
  33. padding: 50px;
  34. }
  35. #particles{
  36. position: fixed;
  37. top: 0px;
  38. left: 0px;
  39. width:100vw;
  40. height:100vh;
  41. background-color:#000;
  42. z-index: -1;
  43. }
  44. </style>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement