forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (45 loc) · 2.61 KB
/
index.html
File metadata and controls
57 lines (45 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<body>
<h1>Social Media </h1>
<p>Social media is a means of interactions among people in which they create, share and exchange information and ideas in virtual communities and networks.</p>
<article class="Facebook">
<h2> facebook</h2>
<p>Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg.
Facebook. Facebook can be accessed from devices with Internet connectivity, such as personal computers, tablets and smartphones. After registering, users can create a profile revealing information about themselves. They can post text, photos and multimedia which are shared with any other users who have agreed to be their "friend" or, with different privacy settings, publicly. Users can also communicate directly with each other with Facebook Messenger, join common-interest groups, and receive notifications on the activities of their Facebook friends and the pages they follow.</p>
<a href="https://en.wikipedia.org/wiki/Facebook"> Read More</a>
</article>
<article class="instagram">
<h3>Instagram</h3>
<p>Instagram started out as a photo- and video-sharing social media platform in 2010 when Kevin Systrom (co-founder) uploaded a picture of a dog with the caption “test.” Over the past.</p>
<a href="https://www.forbes.com/sites/shephyken/2022/10/09/the-power-of-instagram/?sh=1d164b2f6c79">Read More</a>
</article>
<article class="youtube">
<h4>youtube</h4>
<p>YouTube, Web site for sharing videos. It was registered on February 14, 2005, by Steve Chen, Chad Hurley, and Jawed Karim, three former employees of the American e-commerce company PayPal. They had the idea that ordinary people would enjoy sharing their “home videos.” The company is headquartered in San Bruno, California.</p>
<a href="https://www.britannica.com/topic/YouTube">Read More</a>
</article>
<footer>
Contact-: Anu Thapaliya
Facebook,Linkedin,Instagram
Anu Thapaliya
</footer>
</body>
</html>