-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtweets.html
73 lines (60 loc) · 2.77 KB
/
tweets.html
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
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Dan's Level 2 - Tweets page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://www.holbertonschool.com/level2/holberton.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<script src="behavior.js"></script>
</head>
<body class="works_on_smartphone">
<header>
<div class="right">
<ul>
<li class="logo">☎</li>
<li><a href="index.html">Index</a></li>
<li><a href="tweets.html">Tweets</a></li>
<li><a href="cygwin.html">Cygwin</a></li>
</ul>
</div>
</header>
<main>
<article>
<h1>Tweet tweet!</h1>
<p>This is my first tweet :)</p>
<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">.<a href="https://twitter.com/holbertonschool">@holbertonschool</a>: Level 1, <a href="https://twitter.com/twitter">@twitter</a> challenge completed. On to the next challenge! \o/</p>— Daniel Alzugaray (@dalzuga) <a href="https://twitter.com/dalzuga/status/654013751679692800">October 13, 2015</a></blockquote> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<h3>Click the twitter logo below to make it big!</h3>
<img alt="Twitter big logo" class="small" id="smart_thumbnail" src="https://g.twimg.com/Twitter_logo_blue.png">
<h2>Back to the <a href="index.html">index</a>.</h2>
</article>
<aside><div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables
*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//danlevel2.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript></aside>
</main>
<footer>
<p>Made by <a href="https://twitter.com/dalzuga"
target="_blank">Daniel Alzugaray</a>
for <a href="https://www.holbertonschool.com"
target="_blank">Holberton School</a></p>
</footer>
<script id="dsq-count-scr" src="//danlevel2.disqus.com/count.js" async></script>
</body>
</html>