Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@font-face {
font-family: "Netflix Sans Bolder";
src: url("fonts/NetflixSans-Bold.otf") format("opentype");
src: url("../fonts/NetflixSans-Bold.otf") format("opentype");
}

:root {
Expand Down
8 changes: 4 additions & 4 deletions pages/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netflix India - Watch TV Shows Online, Watch Movies Online</title>
<link rel="stylesheet" href="../css/style.css" />
<link rel="icon" href="../assets/images/favicon.ico">
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="assets/images/favicon.ico">

<style>
/* Google Translate Widget Styling */
Expand Down Expand Up @@ -72,11 +72,11 @@
<div class="main">
<div class="box"></div>
<nav>
<span><img width="130" src="../assets/images/logo.svg" alt="Netflix Logo"/></span>
<span><img width="130" src="assets/images/logo.svg" alt="Netflix Logo"/></span>
<div class="nav-buttons">
<button class="btn" id="theme-toggle">☀️</button>
<div id="google_translate_element" class="btn"></div>
<a href="../pages/login.html" class="btn btn-red-sm">Sign In</a>
<a href="login.html" class="btn btn-red-sm">Sign In</a>
</div>
</nav>
<div class="hero">
Expand Down
6 changes: 3 additions & 3 deletions pages/login.html → login.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Login Page</title>
<link rel="stylesheet" href="../css/style.css" />
<link rel="icon" href="../assets/images/favicon.ico">
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="assets/images/favicon.ico">
<style>
/* Add these styles directly or in your style.css file */
body {
Expand Down Expand Up @@ -79,7 +79,7 @@ <h2>Sign In</h2>

<button type="submit">Sign In</button>
</form>
<p class="signup-link">Don't have an account? <a href="../pages/signup.html">Sign up</a></p>
<p class="signup-link">Don't have an account? <a href="signup.html">Sign up</a></p>
</div>
</body>
</html>
4 changes: 2 additions & 2 deletions pages/signup.html → signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sign Up</title>
<link rel="icon" href="../assets/images/favicon.ico">
<link rel="icon" href="assets/images/favicon.ico">
<style>
/* Basic Reset */
* {
Expand Down Expand Up @@ -90,7 +90,7 @@ <h2>Sign Up</h2>

<button type="submit">Create Account</button>
</form>
<p class="signup-link">Already have an account? <a href="../pages/login.html">Sign in</a></p>
<p class="signup-link">Already have an account? <a href="login.html">Sign in</a></p>
</div>
</body>
</html>