-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewNews.html
More file actions
66 lines (66 loc) · 2.9 KB
/
viewNews.html
File metadata and controls
66 lines (66 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google News</title>
<link rel="icon" href="//ssl.gstatic.com/gnews/logo/google_news_192.png" sizes="192x192">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/iconimg.css">
<link href="https://fonts.googleapis.com/css2?family=Google+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Product+Sans&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
</head>
<body>
<header>
<nav>
<div class="left-part">
<div class="menu" aria-title="Main menu">
<div class="menu-bar"></div>
</div>
<div class="title" title="News">
<b>G</b> <b>o</b> <b>o</b> <b>g</b> <b>l</b> <b>e</b>
<span class="news-word">News</span>
</div>
</div>
<div class="center-part">
</div>
<div class="right-part">
<span class="small-icon searcher" aria-title="Search"><span class="icon search--icon"></span></span>
<div class="apps" aria-title="Google apps">
<div class="app-icon"></div>
</div>
<div class="user" aria-title="Google account">
<div class="profile-icon"></div>
</div>
</div>
</nav>
</header>
<div class="main-body">
<div class="space-for-header"></div>
<div class="news-body">
<div class="news-expansion">
<div class="news-tile-container">
<div class="news-tile full-news-tile">
<div class="tile-content">
<div class="inside-tile">
<p class="tile-title"></p>
<div class="tile-description"></div>
<div class="content-from">User News
<span class="more-options">
<span class="popup-icon" aria-title="Save for later"><span class="bookmark-icon"></span></span>
<span class="popup-icon" aria-title="Share"><span class="share-icon"></span></span>
<span class="popup-icon" aria-title="More"><span class="more-icon"></span></span>
</span>
</div>
</div>
</div>
<img src="" class="footage">
</div>
</div>
</div>
</div>
</div>
<script src="js/expandNews.js"></script>
</body>
</html>