-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (94 loc) · 3.66 KB
/
index.html
File metadata and controls
111 lines (94 loc) · 3.66 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
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
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>Digital Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
<style>
body, h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif}
html {scroll-behavior: smooth;}
.w3-row-padding img {margin-bottom: 12px}
/* Set the width of the sidebar to 120px */
.w3-sidebar {width: 120px;background: #222;}
/* Add a left margin to the "page content" that matches the width of the sidebar (120px) */
#main {margin-left: 120px}
/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {#main {margin-left: 0}}
</style>
</head>
<body class = "w3-black">
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center">
<a href="#" class="w3-bar-item w3-button w3-padding-large w3-black">
<i class="fa fa-home w3-xxlarge"></i>
<p>HOME</p>
</a>
<a href="#about" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<i class="fa fa-user w3-xxlarge"></i>
<p>ABOUT</p>
</a>
<a href="#work" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<i class="fa fa-folder-open w3-xxlarge"></i>
<p>WORK</p>
</a>
</nav>
<!-- Main Page Content -->
<div class="w3-padding-large" id="main">
<!-- Header/Home -->
<header class="w3-container w3-padding-32 w3-center w3-black" id="home">
<div class = "muq-wave">
<h1>MuqDonalds.</h1>
<h1>MuqDonalds.</h1>
</div>
</header>
<!-- About me section -->
<div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about">
<h2>About Me</h2>
<p></p>
<h3 class="w3-padding-16 w3-text-light-grey">Languages known</h3>
<p class="w3-wide">C++</p>
<div class="w3-white">
<div class="w3-dark-grey" style="height:28px;width:95%"></div>
</div>
<p class="w3-wide">C#</p>
<div class="w3-white">
<div class="w3-dark-grey" style="height:28px;width:90%"></div>
</div>
<p class="w3-wide">SWIFT</p>
<div class="w3-white">
<div class="w3-dark-grey" style="height:28px;width:90%"></div>
</div>
<p class="w3-wide">C</p>
<div class="w3-white">
<div class="w3-dark-grey" style="height:28px;width:80%"></div>
</div>
<p class="w3-wide">JAVA</p>
<div class="w3-white">
<div class="w3-dark-grey" style="height:28px;width:80%"></div>
</div>
</div>
<!-- End About me section -->
<!-- Work section -->
<div class="w3-content w3-justify w3-text-grey w3-padding-64" id="work">
<h2>Previous Work</h2>
<p>I have completed lots of work in my time. To view previous work, look at the chart below.</p>
<!-- Start Grid -->
<h3 class="w3-padding-16"> </h3> <!-- spacing -->
<div class="w3-row-padding" style="margin:0 -16px">
<div class="w3-half w3-margin-bottom">
<ul class="w3-ul w3-white w3-center w3-opacity w3-hover-opacity-off">
<li class="w3-dark-grey w3-xlarge w3-padding-32"><a href = "Projects/index.html">Projects</a></li>
<li class="w3-padding-16"><a href="Projects/MetarReader.html">Metar Reader</a></li>
<li class="w3-padding-16"><a href="Projects/MetarVisualizer.html">Metar Visualizer</a></li>
<li class="w3-padding-16"><a href="Projects/MMO.html">MMO</a></li>
</ul>
</div>
</div>
</div>
<!-- work section -->
</div>
</body>
</html>