-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (54 loc) · 2.49 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://play-lh.googleusercontent.com/D_a9gAwKQPNFJg9nSWOA5nV2Ycsgky213sZAbom0w5OBtwQ6M6NHg1doNYoj-M49FCQY" type="icon">
<title>FatSecret</title>
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<div id="Top-part" >
<div id="navbar">
<h5><a href="food.html">FOODS</a></h5>
<h5><a href="recipe.html">RECIPES</a></h5>
<h5><a href="fitness.html">FITNESS</a></h5>
<h5><a href="#">COMMUNITY</a></h5>
</div>
<div id="name">
<h1>Your Key to Success</h1>
<img src="https://a.ftscrt.com/static/images/splash/FS_Logo_SplashScreen.png" alt="">
<div id="face-logo">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS3kP5RJhj2eymAGMmRTY-IXlI0pSolG36KtA&usqp=CAU" alt="">
<h4>Continue With Facebook</h4>
</div>
<div id="google-logo">
<img src="https://cdn.pixabay.com/photo/2015/12/11/11/43/google-1088004_640.png" alt="">
<h4>Continue With Google</h4>
</div>
<h3>Create account using email</h3>
<input type="text" id="email" placeholder="Email Address" required>
<button onclick="Submit(event)"><a href="register.html">Start Now</a></button>
<h3>Already a Member?<a href="Login.html">Sign In</a></h3>
<h2><strong> Start losing weight the healthy way with easy to use apps, online tools and support.</strong>
</h2>
</div>
<div id="img-logo">
<img src="https://static.fatsecret.com/static/images/mobi/ios/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg" alt="">
<img src="https://static.fatsecret.com/static/images/mobi/android/en_get_2.svg" alt="">
<!-- <img class="img1" src="https://static.fatsecret.com/static/images/splash/Logo_Tab_Reverse_Green.png" alt=""> -->
</div>
</div>
<div id="home-page">
<h2></h2>
</div>
</body>
</html>
<script src="./scripts/index.js"></script>
<script type="module">
import Navbar from "./scripts/home.js";
document.getElementById("home-page").innerHTML=Navbar;
let y = document.createElement("div");
y.setAttribute
</script>