-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (68 loc) · 2.83 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
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta title="Website">
<meta name="description" content="a quick description">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>Ahmed's website</title>
<link rel="stylesheet" href="index-style.css">
</head>
<body>
<div id="header">
<div id="logo" style="display: grid;">
<div id = "name">Ahmed</div>
</div>
<div><!-- empty div to seperate two header--> </div>
<div id="about">
<ul id="list">
<li> <a href="index.html">Home</a> </li>
<li> About </li>
<li> Topics </li>
<li> <a href="login/login.html"> Login </a> </li>
</ul>
</div>
</div>
<div id="main">
<div></div>
<div id="centre" style="display: grid; grid-template-rows: auto;">
<div style="font-size: 3rem; color: #154663; font-weight: 1000;
padding-top: 1rem; text-align: center; display: grid;">
Welcome to Ahmed Shukri's website!
</div>
<br/>
<div>
Welcome to my website. This is a test page that will be the index page for
my website. Feel free to check out my current projects!
</div>
<div style="background-color: #154663; min-width: 100%; min-height: 50%;
margin-top: 5%; display: grid; grid-template-columns: 1fr 1fr; border-radius: 25px;
position: relative;">
<div id="calculator" style="display: grid; grid-template-rows: 1fr 3fr;">
<div class="subtitle">
My calculator using basic JavaScript
</div>
<div class="preview">
<a href="Calculator\calculator.html" style="cursor: pointer; height: 100%
; width: 100%; display:block"> </a>
</div>
</div>
<div id="clock" style="display: grid; grid-template-rows: 1fr 3fr;">
<div class="subtitle">
My clock using basic JavaScript
</div>
<div class="preview">
<a href="Clock/clock.html" style="cursor: pointer; height: 100%
; width: 100%; display:block"> </a>
</div>
</div>
</div>
<!--create empty div to insert space at the bottom-->
<div style="height: 100px;"></div>
</div>
<div></div>
</div>
<div id="footer">
<div id="footer-text"> © Ahmed Shukri 2022 </div>
</div>
<script src="index-script.js"></script>
</body>