No both the HTML and the CSS were blank. So yeah, if I tried to type an input type of button now, I guess it would crash my test… I feel like such a beginner but I am needing lots of time to figure out how the platform actually works… I wanted to ask that question super quickly in case there really WAS an issue and I was working from some sort of buggy Survey form page. ![]()
Oh and yes, since there was no code in, I had to write everything myself.
You are a beginner, ask all the questions you need.
Disregard what I said about boilerplate.
As @JeremyLT was saying it would help us to test the project if you can paste the text of your code in here instead of screenshots. The full contents of the code.
Sure, but as I was saying, this was more about me not writing ANYTHING and the test passing than about what I had written before (Since I am following the order of the user stories and not writing the code in any random order). But sure, I’ll do that. I need to step out for a few minutes, but I’ll do that when I get back. Thanks!
they are not meant to be passed in order, you have to pass all the tests, but in what order you write the code is irrelevant. It can happen that following the user stories the tests aren’t passed in the exact order they are written
Oh I didn’t know that! I guess it makes more sense to follow the steps in order… But I didn’t know you could write it in any order. Slightly dyspraxic out here though, so I think I’ll stick to working in order! ![]()
Hi pkdvalis!
That’s my full code: I’m just pasting it, not sure how to share it without having to start a new thread:
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="survey" content="Mercury Airlines satisfaction survey">
<meta name="keywords" content="satisfaction survey, Mercury Airlines, travel, Tourism">
<meta name="author" content="Judith Rekassa">
<title>Are you happy with us?</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
</html>
<h1 id="title">Satisfaction survey for Mercury Airlines.</h1>
<p id="description">How often do you use / how satisfied are you with our airline?</p>
<form id="survey-form"></form>
<p class="layout">Name</p>
<input id="name">
</body>
CSS:
body {
background-color: #E0E0E0;
}
#title {
background-color: #00B140;
color: #E0E0E0;
font-family: "Arial Black";
font-size: 18px;
padding: 40px;
text-align: center;
}
#description {
color: #000000;
font-family: "Arial Black";
font-size: 16px;
}
.layout {
color: #000000;
font-family: "Times New Roman";
font-size: 16px;
}
Just for info anyway: one might SENSE a beginner here, bit like when you have someone who speaks a foreign language super badly… BUT I am having a lot of fun building this, which I guess is what matters. I’m always open to feedback though. ![]()
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.