-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcoming.html
107 lines (97 loc) · 3.28 KB
/
welcoming.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!-- @format -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta tag -->
<meta charset="UTF-8" />
<!-- SEO - Search Engine meta tags -->
<meta
name="description"
content="Twitter Clone build With Node.js and Vanilla Javascript "
/>
<meta name="keywords" content="HTML, CSS, JavaScript Node.Js " />
<meta name="author" content="Saddam Arbaa" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- First Mobile Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- open links in new page -->
<base target="_blank" />
<!-- Google Web Fonts link -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!-- Normalize.css to makes browsers render all elements more consistently and in line with modern standards. -->
<link rel="stylesheet" href="./assets/styles/normalize.css" />
<!-- font Awesome Library -->
<link rel="stylesheet" href="./assets/styles/all.min.css" />
<!-- welcoming css file -->
<link rel="stylesheet" href="./assets/styles/welcoming.css" />
<!-- sessions.Js file -->
<!-- load this one directly -->
<!-- <script src="./assets/scripts/sessions.js"></script> -->
<!-- login.Js file -->
<script src="./assets/scripts/welcoming.js" defer></script>
<!-- title -->
<title>welcoming Page</title>
</head>
<body>
<div class="container">
<div class="left-side">
<div class="left-content">
<img
class="left_twitter-logo"
src="./assets/img/twttericon.png"
alt=""
/>
</div>
</div>
<div class="right-side">
<div class="right-content">
<img
class="right_twitter-logo"
src="./assets/img/twttericon.png"
alt=""
/>
<h1>Happening now</h1>
<h2>Join Twitter today.</h2>
<button class="signup-btn">
<a target="_self" href="register.html">Sign up</a>
</button>
<button class="login-btn">
<a target="_self" href="login.html">Log in</a>
</button>
</div>
</div>
</div>
<footer class="footer">
<a href="https://about.twitter.com/">About</a>
<a href="https://help.twitter.com/en">Help Center</a>
<a href="https://twitter.com/en/tos">Terms of Service</a>
<a href="https://twitter.com/en/privacy">Privacy Policy</a>
<a href="https://twitter.com/en/privacy">Cookie Police</a>
<a
href="https://business.twitter.com/en/help/troubleshooting/how-twitter-ads-work.html"
>Ads info</a
>
<a href="https://blog.twitter.com/">Blog</a>
<a href="https://status.twitterstat.us/">Status</a>
<a href="https://careers.twitter.com/">Careers</a>
<a href="https://about.twitter.com/press/brand-assets"
>Brand Resources</a
>
<a href="https://ads.twitter.com/login?ref=gl-tw-tw-twitter-advertise"
>Advertising</a
>
<a href="https://marketing.twitter.com/en">Marketing</a>
<a href="https://business.twitter.com/">Twitter for Business</a>
<a href="https://developer.twitter.com/en">Developers</a>
<a href="https://twitter.com/i/directory/profiles">Directory</a>
<a href="https://twitter.com/settings/account/personalization"
>Settings</a
>
<a href="welcoming.html">© 2021 Twitter, Inc.</a>
</footer>
</body>
</html>